Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
Peter H. Jin
Mini web apps
Commits
1db08cbf
Commit
1db08cbf
authored
Mar 23, 2019
by
Peter H. Jin
Browse files
Add more files
parent
fd055896
Pipeline
#53281891
passed with stage
in 31 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
0 deletions
+31
-0
.gitignore
.gitignore
+1
-0
.gitlab-ci.yml
.gitlab-ci.yml
+1
-0
LanguageDetector.html
LanguageDetector.html
+22
-0
index.html
index.html
+2
-0
make-gtw.sh
make-gtw.sh
+5
-0
No files found.
.gitignore
0 → 100644
View file @
1db08cbf
public/
.gitlab-ci.yml
View file @
1db08cbf
...
...
@@ -5,6 +5,7 @@ pages:
script
:
-
mkdir public
-
cp *.html public
-
sh make-gtw.sh
artifacts
:
paths
:
-
public
...
...
LanguageDetector.html
0 → 100644
View file @
1db08cbf
<!DOCTYPE html>
<html>
<head>
<title>
Language Detector
</title>
</head>
<body>
<form
action=
"https://us-central1-webclockbackend.cloudfunctions.net/language-detector"
method=
"get"
>
<label
for=
"text"
>
Enter the text you want to find the language of:
</label>
<br
/>
<textarea
name=
"text"
id=
"text"
required
></textarea>
<br
/>
<input
type=
"checkbox"
name=
"langOnly"
id=
"langOnly"
/><label
for=
"langOnly"
>
Hide debugging output?
</label>
<br
/>
<input
type=
"radio"
name=
"format"
value=
"plain"
id=
"formatPlain"
checked
/><label
for=
"formatPlain"
>
Plain text output
</label>
<br
/>
<input
type=
"radio"
name=
"format"
value=
"json"
id=
"formatJson"
/><label
for=
"formatJson"
>
JSON output
</label>
<br
/>
<input
type=
"submit"
/>
<input
type=
"reset"
/>
</form>
</body>
</html>
\ No newline at end of file
index.html
View file @
1db08cbf
...
...
@@ -10,6 +10,8 @@
<ul>
<li><a
href=
"FinalGradeCalculator.html"
>
Final Grade Calculator
</a></li>
<li><a
href=
"WhereAmI.html"
>
Where am I?
</a></li>
<li><a
href=
"GuessTheWord.html"
>
Guess the Word Game
</a></li>
<li><a
href=
"LanguageDetector.html"
>
Language Detector
</a></li>
</ul>
Copyright
©
2018-2019 Peter Jin. View this repository on
<a
href=
"https://github.com/PHJArea217/miniwebapps"
>
GitHub
</a>
and
...
...
make-gtw.sh
0 → 100644
View file @
1db08cbf
(
echo
'<html><head><title>Guess the Word</title><meta charset="utf-8"></head><body>'
curl https://gitlab.com/PHJArea217/wordgame/raw/master/instr.md | markdown
echo
'<p><a href=".">Back to Home Page</a></p></body></html>'
)
>
public/GuessTheWord.html
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment