Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Casino-Kingdom
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jarceo
Casino-Kingdom
Compare revisions
b40b1338163285cfc35fc26b8a000ee9974d13d5 to 8578652eacd6bf5235d17d92c6074f8d7bf90277
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
jarceo/Casino-Kingdom
Select target project
No results found
8578652eacd6bf5235d17d92c6074f8d7bf90277
Select Git revision
Branches
Sydney
anish
josh
main
Swap
Target
jarceo/Casino-Kingdom
Select target project
jarceo/Casino-Kingdom
1 result
b40b1338163285cfc35fc26b8a000ee9974d13d5
Select Git revision
Branches
Sydney
anish
josh
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (18)
Initial commit
· 2db82475
Josh Arceo
authored
2 years ago
Unverified
2db82475
Create README.md
· 18179304
Josh Arceo
authored
2 years ago
Unverified
18179304
Test Commit
· 4b431d81
josh
authored
2 years ago
4b431d81
test 3
· 1ab66d4e
josh
authored
2 years ago
1ab66d4e
changed test.txt
· 8451a43f
josh
authored
2 years ago
8451a43f
commit1
· 4b8c7e95
anishnag
authored
2 years ago
4b8c7e95
Merge branch 'main' of
https://git.ece.iastate.edu/jarceo/Casino-Kingdom
· 136ba23b
anishnag
authored
2 years ago
blah
136ba23b
Commit 1
· c826eef9
Sydney Jones
authored
2 years ago
c826eef9
edit index.html
· 9030f8ae
josh
authored
2 years ago
9030f8ae
Merge branch 'main' of
https://git.ece.iastate.edu/jarceo/Casino-Kingdom
· 76414e52
josh
authored
2 years ago
ues
76414e52
modified index
· 97c020e8
josh
authored
2 years ago
97c020e8
removed test files
· 1eaa0e7f
josh
authored
2 years ago
1eaa0e7f
added TODO
· b1b8cd68
root
authored
2 years ago
b1b8cd68
sql integration
· a786f96f
josh
authored
2 years ago
a786f96f
Merge remote-tracking branch 'origin/main'
· f30b1b32
josh
authored
2 years ago
f30b1b32
link home.js with index
· 0ca2ec25
josh
authored
2 years ago
0ca2ec25
updated TODO
· 4b941a0d
root
authored
2 years ago
4b941a0d
Merge branch 'main' into 'master'
· 8578652e
jarceo
authored
2 years ago
# Conflicts: # README.md
8578652e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
HTML/home.css
+0
-0
0 additions, 0 deletions
HTML/home.css
HTML/home.js
+16
-0
16 additions, 0 deletions
HTML/home.js
HTML/index.html
+9
-0
9 additions, 0 deletions
HTML/index.html
LICENSE
+21
-0
21 additions, 0 deletions
LICENSE
TODO.txt
+5
-0
5 additions, 0 deletions
TODO.txt
with
51 additions
and
0 deletions
HTML/home.css
0 → 100644
View file @
8578652e
This diff is collapsed.
Click to expand it.
HTML/home.js
0 → 100644
View file @
8578652e
let
mysql
=
require
(
'
mysql
'
);
let
connection
=
mysql
.
createConnection
({
host
:
'
localhost
'
,
user
:
'
root
'
,
password
:
'
XQz&6fJ58r@&j5
'
,
database
:
'
casino
'
});
connection
.
connect
(
function
(
err
)
{
if
(
err
)
{
return
console
.
error
(
'
error:
'
+
err
.
message
);
}
console
.
log
(
'
Connected to the MySQL server.
'
);
});
This diff is collapsed.
Click to expand it.
HTML/index.html
0 → 100644
View file @
8578652e
<html>
<head>
<title>
Casino Kingdom
</title>
</head>
<body>
<h2>
Welcome
</h2>
<script
src=
"home.js"
></script>
</body>
</html>
This diff is collapsed.
Click to expand it.
LICENSE
0 → 100644
View file @
8578652e
MIT License
Copyright (c) 2023 Josh Arceo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
This diff is collapsed.
Click to expand it.
TODO.txt
0 → 100644
View file @
8578652e
TODO:
Learn React
Figure out multiple pages
Decide games
This diff is collapsed.
Click to expand it.