Akjava commited on
Commit
bcda9c5
1 Parent(s): 0a683cf

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +131 -0
index.html CHANGED
@@ -86,6 +86,137 @@
86
  document.getElementById('spks').onchange = update_range
87
  document.getElementById('temperature').onchange = update_range2
88
  document.getElementById('speed').onchange = update_range3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  }
90
 
91
 
 
86
  document.getElementById('spks').onchange = update_range
87
  document.getElementById('temperature').onchange = update_range2
88
  document.getElementById('speed').onchange = update_range3
89
+
90
+ const word_text = `
91
+ Maybe.
92
+ Perhaps.
93
+ Probably.
94
+ Actually.
95
+ Basically.
96
+ Generally.
97
+ Usually.
98
+ Obviously.
99
+ Seriously.
100
+ Honestly.
101
+ Come here.
102
+ Go there.
103
+ Sit down.
104
+ Stand up.
105
+ Please wait.
106
+ Hurry up.
107
+ Be careful.
108
+ Be quiet.
109
+ Listen to me.
110
+ Look at this.
111
+ It's raining.
112
+ It's sunny.
113
+ It's cold.
114
+ It's hot.
115
+ It's late.
116
+ It's early.
117
+ It's easy.
118
+ It's difficult.
119
+ It's important.
120
+ It's interesting.
121
+ I'm excited!
122
+ I'm nervous.
123
+ I'm tired.
124
+ I'm hungry.
125
+ I'm thirsty.
126
+ I'm bored.
127
+ I'm happy.
128
+ I'm sad.
129
+ I'm angry.
130
+ I'm scared.
131
+ No problem.
132
+ You're welcome.
133
+ My pleasure.
134
+ Of course.
135
+ Sure thing.
136
+ No worries.
137
+ It's okay.
138
+ Don't mention it.
139
+ Any time.
140
+ See you later!
141
+ See you soon!
142
+ Take care!
143
+ Have a good one!
144
+ Good night!
145
+ Bye!
146
+ Farewell!
147
+ Any questions?
148
+ Is everything clear?
149
+ Do you need anything else?
150
+ Can I help you with anything?
151
+ What do you think?
152
+ I'm not sure about that.
153
+ I don't think so.
154
+ I disagree.
155
+ I see things differently.
156
+ That's not how I see it.
157
+ Exactly!
158
+ I agree.
159
+ That's right.
160
+ You're right.
161
+ I think so too.
162
+ I see your point.
163
+ You got this!
164
+ Hang in there!
165
+ Don't give up!
166
+ You can do it!
167
+ Keep trying!
168
+ I believe in you!
169
+ Got it.
170
+ Okay.
171
+ I understand.
172
+ Makes sense.
173
+ No problem.
174
+ You're welcome.
175
+ My pleasure.
176
+ Sure.
177
+ Of course.
178
+ Certainly.
179
+ Absolutely.
180
+ Definitely.
181
+ Wow!
182
+ Really?
183
+ No way!
184
+ Are you serious?
185
+ You're kidding!
186
+ That's incredible!
187
+ Unbelievable!
188
+ That's great!
189
+ That's awesome!
190
+ That's amazing!
191
+ I'm so happy!
192
+ This is fantastic!
193
+ Wonderful!
194
+ Excellent!
195
+ I'm sorry.
196
+ My bad.
197
+ Excuse me.
198
+ I apologize.
199
+ Forgive me.
200
+ Thank you!
201
+ Thanks!
202
+ Thank you so much!
203
+ I really appreciate it.
204
+ You're a lifesaver!
205
+ I owe you one.
206
+ Hello huggingface!
207
+ Good morning/afternoon/evening!
208
+ How are you?
209
+ How's it going?
210
+ What's up?
211
+ Long time no see!
212
+ Nice to meet you!
213
+ Good to see you!
214
+ `
215
+ const words = word_text.trim().split("\n")
216
+ for (word in words){
217
+ console.log(word)
218
+ }
219
+
220
  }
221
 
222