-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (111 loc) · 4.44 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Cauchy</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link rel="shortcut icon" type="image/png" href="logo-no-background.png" />
</head>
<body>
<section class="hero is-medium is-bold">
<div class="hero-body">
<div class="container">
<figure class="image is-256x256">
<img src="logo-no-background.png" alt="Project Cauchy Logo" />
</figure>
<br />
<h2 class="subtitle is-3">
Experience the world of data analytics in action
</h2>
<div class="content is-medium">
<p>
We all know the paradox of needing experience to get
an experience. Join us and gain hands-on experience
with real-world data analytics tools.
</p>
<br />
<a class="button is-primary is-large"
href="https://docs.google.com/forms/d/e/1FAIpQLSewufQJPrbMlBaoph3hIz2rSAVEzhf4YdlqGaG3adtYFprxCg/viewform"
target="_blank">Enroll Now</a>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2 class="title is-2">What You'll Learn</h2>
<div class="content">
<ul>
<li>
<span class="icon has-text-primary">
<i class="fas fa-shield-alt"></i>
</span>
Connect to a remote infrastructure via VPN
(Tailscale)
</li>
<li>
<span class="icon has-text-primary">
<i class="fas fa-tasks"></i>
</span>
Use Jira for project management
</li>
<li>
<span class="icon has-text-primary">
<i class="fas fa-database"></i>
</span>
Build data generating processes with FastAPI
</li>
<li>
<span class="icon has-text-primary">
<i class="fas fa-database"></i>
</span>
Replicate Prod DB (MySQL to MySQL)
</li>
<li>
<span class="icon has-text-primary">
<i class="fas fa-cloud-upload-alt"></i>
</span>
Ingest data to datalakehouse (MySQL to MinIO and
DuckDB)
</li>
<li>
<span class="icon has-text-primary">
<i class="fas fa-chart-line"></i>
</span>
Create dashboards with Plotly Dash
</li>
<li>
<span class="icon has-text-primary">
<i class="fas fa-shield-check"></i>
</span>
Implement fraud detection for ML
</li>
</ul>
<p>
<strong>Note:</strong> This program requires knowledge
of SQL and Python.
</p>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2 class="title is-2">Ready to take the next step?</h2>
<div class="content">
<p>
Gain hands-on experience in data analytics. Enroll
today!
</p>
<a class="button is-primary is-large" href="mailto:[email protected]">Contact Us</a>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>© 2024 Project Cauchy. All rights reserved.</p>
</div>
</footer>
<script defer src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"></script>
</body>
</html>