-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
61 lines (52 loc) · 2.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Speech Programmer</title>
<link rel="stylesheet" href="css/common.css">
</head>
<body>
<div class="half-screen left">
<h1>Speech Programmer</h1>
<div class="instructions">
<p>Welcome to Speech Programmer. Speech Programmer is your personal code typist. All you have to do is speak out the code, and the app will write it for you!</p>
<p>Speech Programmer has certain syntax rules of it's own, and only responds to specific voice commands. Make sure you take a look at the <a href="./readme.html" target="_blank">readme</a> document before you get started.</p>
<p>To start speaking code, hit the start button below...</p>
</div>
<div class="btn-container">
<button class="btn start" id="start_stop_button" onclick="startStopButton(event)">
Start
</button>
<button class="btn clear" id="clearButton" onclick="clearCode(event)">
Clear Code
</button>
<a class="btn readme" href='./readme.html' target="_blank">Readme</a>
<button class="btn" id="changeThemeButton" onClick="changeTheme(event)">
Change Theme
</button>
</div>
<div class="contributing">
<h2>Contribute</h2>
<p>Speech Programmer is a completely open-source project. I'd love to work with you if you want to contribute to this project.</p>
<p>My aim is to use ML and NLP one day to enable Speach Programmer to convert natural language to code, instead of the speaker having to follow the rules of the app.</p>
<p>If you want to take a look at the code, head over to my <a target="_blank" href="https://github.com/shreyasnisal/SpeechProgrammer">GitHub repository</a>. Feel free to start a discussion on GitHub or open issues/pull requests. You can also contact me directly at my <a target="_blank" href="mailto:[email protected]">email address</a>, whether it be about this project or just to say hello.</p>
</div>
</div>
<div class="half-screen right full-height" id="text-editor-container">
<!-- Monaco Text Editor Here -->
</div>
<script src="js/voicerecog.js"></script>
<script src="js/functionCalls.js"></script>
<script src="js/buttonFunctions.js"></script>
<script src="js/utilFunctions.js"></script>
<script src="js/includeLibraries.js"></script>
<script src="js/functions.js"></script>
<script src="js/variables.js"></script>
<script src="js/iofunctions.js"></script>
<script src="js/ifelse.js"></script>
<script src = 'js/loops.js'></script>
<script src="js/braces.js"></script>
<script src="https://unpkg.com/monaco-editor@latest/min/vs/loader.js"></script>
<script src="js/monacoEditor.js"></script>
</body>
</html>