-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
153 lines (129 loc) · 5.15 KB
/
about.html
File metadata and controls
153 lines (129 loc) · 5.15 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-173578745-1"></script>
<script>
if (window.location.host==="charx7.me" || window.location.host === "www.charx7.me") {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-173578745-1');
}
</script>
<title>Carlos Portfolio - About</title>
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css"
href="/static//css/bootstrap.css">
<link rel="stylesheet" type="text/css"
href="/static//css/main.css">
<!-- Font Awsome CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css"
href="/static//css/colorful.css">
</head>
<!-- Pigments for code CSS -->
<body>
<header class="site-header"></header>
<nav class="navbar navbar-expand-md navbar-dark bg-steel fixed-top">
<div class="container">
<a class="navbar-brand mr-4" href="/">Carlos Huerta</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggle" aria-controls="navbarToggle" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarToggle">
<div class="navbar-nav mr-auto">
<a class="nav-item nav-link" href="/about.html">About</a>
<a class="nav-item nav-link" href="/index.html">Blog</a>
<a class="nav-item nav-link" href="/portfolio.html">Portfolio</a>
</div>
<!-- Navbar Right Side
<div class="navbar-nav">
<a class="nav-item nav-link" href="/login">Login</a>
<a class="nav-item nav-link" href="/register">Register</a>
</div>
-->
</div>
</div>
</nav>
<!-- Paralax Image-->
<div class = "parallax">
<!-- Paralax Text-->
<div class = "container-title-text">
<h1 id="parallax-title">Carlos Huerta - Data Science Blog</h1>
</div>
</div>
<!-- Main content-->
<div class="main-content">
<div class="container">
<h1>About me</h1>
<div class="content-section">
<p>
I am Carlos Huerta recent graduate from the Masters in Science program in Statistics and Big data
from University of Groningen (Netherlands) where I studied courses in Pattern Recognition, Machine
Learning, Contemporary Statistics, Web and Cloud Computing, Scalable Computing, Neural Networks,
Statistical Genomics and Information Systems amongst others, avid programmer
and passionate for data science and A.I. I did my Bachelor in Actuarial Science at the University
of the Americas Puebla (Mexico) where I studied actuarial and finantial Mathematics as well as
programming and statistics.
</p>
<div class="row">
<div class="col-md-6">
<p>
Interested in:
<ul>
<li>Web Development</li>
<li>Deep Learning</li>
<li>Data Engineering</li>
<li>Machine Learning</li>
</ul>
</p>
</div>
<div class="col-md-6">
<p>
Some list of technologies that I have worked with:
<ul>
<li>Back-end: Flask, Node</li>
<li>Front-end: React, Bootstrap</li>
<li>Deep learning frameworks: Tensorflow, Keras, Pytorch</li>
<li>Big Data: Spark, Kafka, Airflow</li>
<li>DevOps: Docker </li>
<li>Cloud Computing: GCP, AWS</li>
</ul>
</p>
</div>
</div>
<p>In case you have some interesting project in mind, feel free to contact me at:
<span class="author-linkedin small-bio-icon">
<a class="link-icon" target="_blank" href="https://www.linkedin.com/in/carlos-rodolfo-huerta-santiago-2b5609100/">
<i class="fa fa-linkedin"></i> Linkedin
</a>
</span>
</p>
</div>
<!-- Footer -->
<div class="border-top pt-3">
<small class="text-muted">
Made with ❤️ using flask, frozen-flask, Bootstrap
</small>
<div class="right-footer">
<a href="https://github.com/charx7" style="color: black!important; text-decoration: none;">
<i class="fa fa-github" style="padding-right: 16px"></i>
</a>
<a href="https://www.linkedin.com/in/carlos-rodolfo-huerta-santiago-2b5609100/" style="color: black!important; text-decoration: none">
<i class="fa fa-linkedin" style="padding-right: 16px"></i>
</a>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<!-- BS js -->
<script type="text/javascript"
src="/static/js/bootstrap.bundle.js"></script>
</body>
</html>