Skip to content

Commit ae883c6

Browse files
committed
List Updated
1 parent 8e180e7 commit ae883c6

File tree

192 files changed

+70399
-2392
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+70399
-2392
lines changed

01-iOS-Calculator/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# iOS-Calculator
1+
# 1 iOS-Calculator
2+
23
A Calculator to implement my HTML5, CSS and JS skills.
34

45
Check it out here: https://zpratikpathak.github.io/iOS-Calculator/

01-iOS-Calculator/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />

01-iOS-Calculator/script.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,11 @@ function rerender() {
8787
}
8888

8989
function init() {
90-
document.querySelector(".class-buttons").addEventListener("click", function(event) {
91-
buttonClick(event.target.innerText);
92-
});
90+
document
91+
.querySelector(".class-buttons")
92+
.addEventListener("click", function (event) {
93+
buttonClick(event.target.innerText);
94+
});
9395
}
9496

9597
init(); //init update

02-Travel-India/Readme.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# 2. Travel India
2+
3+
Travel India is an Project which focus on india's top 4 most visited tourist places. This project has very beautiful UI controlled by Javascript. The Navigation is fone by using Javascript. It also has very beautiful Navbar.
4+
5+
Technologies Used: JavaScript, HTML, CSS
6+
![Travel India](image.png)

02-Travel-India/image.png

1.51 MB
Loading

02-Travel-India/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />

03-age-prediction-tfjs/Readme.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# 3. Age Prediction Tfjs
2+
3+
Age prediction app uses the machine learning model of opencv and tensorflow JS to predict the Age of a person using face recognition. It is solely built by using an open-source model of TFjs.
4+
5+
Technologies Used: Javascript, Html, CSS, Tensorflow Js, Opencv
6+
7+
![Age Prediction TFjs](image.png)

03-age-prediction-tfjs/image.png

682 KB
Loading

03-age-prediction-tfjs/index.html

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,38 @@
11
<html lang="en">
2-
<head>
3-
<meta charset="UTF-8">
4-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2+
<head>
3+
<meta charset="UTF-8" />
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
55
<title>Opencv JS</title>
66
<script src="js/utils.js"></script>
77
<script async src="js/opencv.js" onload="openCvReady();"></script>
8-
98

109
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
11-
10+
1211
<style>
13-
canvas {
14-
position: absolute;
15-
}
16-
h2{
12+
canvas {
13+
position: absolute;
14+
}
15+
h2 {
1716
position: relative;
1817
top: -250px;
1918
right: 350;
20-
}
21-
body {
22-
margin: 0;
23-
background-color: whitesmoke;
24-
padding: 0;
25-
width: 100vw;
26-
height: 100vh;
27-
display: flex;
28-
justify-content: center;
29-
align-items: center;
30-
}
19+
}
20+
body {
21+
margin: 0;
22+
background-color: whitesmoke;
23+
padding: 0;
24+
width: 100vw;
25+
height: 100vh;
26+
display: flex;
27+
justify-content: center;
28+
align-items: center;
29+
}
3130
</style>
32-
</head>
33-
<body>
31+
</head>
32+
<body>
3433
<video id="cam_input" height="680" width="900"></video>
3534
<canvas id="canvas_output"></canvas>
3635
<script type="text/JavaScript" src="script.js"></script>
3736
<!-- <h2 id="output">Initializing</h2> -->
38-
</body>
39-
37+
</body>
4038
</html>

03-age-prediction-tfjs/js/opencv.js

Lines changed: 11032 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)