forked from jonathanc0101/jonathanc0101.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
214 lines (150 loc) · 11.5 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My portfolio</title>
<script src="./libraries/p5.js"></script>
<script src="./script.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<main id="article-section">
<nav id="nav-desktop">
<ul>
<li ><a href="#welcome-section">Welcome</a></li>
<li ><a href="#who-am-i">Who am I</a></li>
<li ><a href="#desktop-section">Desktop projects</a></li>
<li ><a href="#web-section">Web Projects</a></li>
<li class="contact-link"><a href="#contact-section" >Contact me</a></li>
</ul>
</nav>
<nav id="nav-mobile">
<ul>
<li>
<a href="#article-section">My portfolio</a>
</li>
<li id="toggle-button">
<a href="javascript:void(0);" class="icon" onclick="toggleNav()">
<i class="fa fa-bars"></i>
</a>
</li>
</ul>
<div id="my-links">
<ul>
<li ><a class="nav-button" href="#welcome-section">Welcome</a></li>
<li ><a class="nav-button" href="#who-am-i">Who am I</a></li>
<li ><a class="nav-button" href="#desktop-section">Desktop projects</a></li>
<li ><a class="nav-button" href="#web-section">Web Projects</a></li>
<li class="contact-link"><a class="nav-button" href="#contact-section" >Contact me</a></li>
</ul>
</div>
</nav>
<header class="header">
<div id="welcome-section">
<div id="p5-sketch">
<script src="./seleccion.js"></script>
</div>
<div class="text-section">
<h1>Hello!</h1>
<h2 class="welcome-header">Welcome to my portfolio of projects</h2>
<p>
Some of the projects presented here I made during
year of 2020.
</p>
<p>If you want to see any project and maybe the code behind it, feel free to click on any image and get redirected to the page in question or to the github that contains the code.</p>
</div>
</div>
</header>
<div id="who-am-i">
<section>
<div class="text-section">
<h2>Who am I</h2>
<p>
Hello! My name is Jonathan Cavia, I'm persuing a Computer science degree in the Universidad de la Patagonia San Juan Bosco. I've worked in a broad range of IT related labors, from installing cameras and surveillance systems, designing and developing programs for the government in VB.NET, to making educative demonstrational programs in Python. Now I'm currently learning web development and i'm liking it so far, and that's what really matters so I'm gonna keep going because to like computer science is a lifelong learning journey.
</p>
<h2>👋</h2>
</div>
</section>
</div>
<section class="introduction">
<div class="quote-container">
<p class="text">“Good artists borrow, great artists steal.”</h2>
<p class="author">-Pablo Picasso (maybe)</p>
</div>
</section>
<div class="text-section">
<h2>Introduction</h2>
<p>
If the quote is true, then all programmers are great artists. We live in an age of stackoverflow and copy-paste. Altough this wasn't copy paste per se, I did not come up with any of the building blocks that made this website, that's the work of much, much smarter people than me. The people that invented HTML, CSS, javascript, etc. I just made the blocks fit in a way that looked nice to me.
</p>
</div>
<div id="desktop-section">
<div class="text-section">
<h2>Desktop projects</h2>
</div>
<article id="desktop-projects">
<section class="project-tile" id="turing-machine-simulator">
<h3>This is a Turing machine simulator. The simplest computer that you could think of, this program simulates it.</h3>
<p>It's entirely written in Python and the UI is made using the library Tkinter.</p>
<p>I made it during my fundaments of computer science class during fall of 2020.</p>
<a href="https://github.com/jonathanc0101/FTI--entregable-final-maquina-de-turing" target="_blank" rel="noopener noreferrer"><img src="https://github.com/jonathanc0101/FTI--entregable-final-maquina-de-turing/blob/imagenes-y-clutter/imagenes/interfaz%202021%2011%2024.PNG?raw=true" alt="image of the program"></a>
</section>
<section class="project-tile" id="government-program">
<h3>Program for social assistance.</h3>
<p>This program was made entirely free for the Chubut government in Argentina. It's written in an ancient language called VB.NET.</p>
<a href="https://github.com/jonathanc0101/accionSocial" target="_blank" rel="noopener noreferrer"><img src="https://raw.githubusercontent.com/jonathanc0101/accionSocial/imagenesYclutter/imagenes/GrupoConviviente.PNG" alt="image of the program"></a>
</section>
</article>
</div>
<div id="web-section">
<div class="text-section">
<h2>Web projects</h2>
</div>
<article id="projects">
<section class="project-tile" id="product-page">
<h3>The product landing page</h3>
<p>This is an example of product page, let's not think about the fact that the product and the company already exist and I have nothing to do with them.</p>
<a href="./product%20landing%20page" target="_blank" rel="noopener noreferrer">
<img src="https://raw.githubusercontent.com/jonathanc0101/Freecodecamp-projects/master/1st%20course/images/product%20landing%20page.PNG" alt="image of the page">
</a>
</section>
<section class="project-tile" id="form">
<h3>First web form</h3>
<p>This is my first web form, discovering the powerful aspect of padding in an input opened my eyes. It sounds funny but it's true, before doing this all I could imagine when i tought of an user interface in a form was some old grey-looking Windows form from the early 2000's.</p>
<a href="./survey%20form" target="_blank" rel="noopener noreferrer"><img src="https://raw.githubusercontent.com/jonathanc0101/Freecodecamp-projects/master/1st%20course/images/survey%20form.PNG" alt="image of the page"></a>
</section>
<section class="project-tile" id="article">
<h3>The article</h3>
<p>Sometimes I have problems falling asleep, this is the way that I chose to deal with that. Writing whatever keeps me up at night.</p>
<a href="./technical%20documentation%20page" target="_blank" rel="noopener noreferrer">
<img src="https://raw.githubusercontent.com/jonathanc0101/Freecodecamp-projects/master/1st%20course/images/article.PNG" alt="image of the page">
</a>
</section>
<section class="project-tile" id="tribute">
<h3>The Julius Caesar "tribute"</h3>
<p>It's not really a tribute, I say some facts that do not leave his image pristine to say the least. I also say that he was a product of his time, make of this what you will.</p>
<a href="./tribute%20to%20jc" target="_blank" rel="noopener noreferrer">
<img src="https://raw.githubusercontent.com/jonathanc0101/Freecodecamp-projects/master/1st%20course/images/tribute.PNG" alt="image of the page">
</a>
</section>
</article>
</div>
</main>
<div class="contact-container" id="contact-section">
<h3>If you'd like to contact me, here are some places where you can find me and my work.</h3>
<a class="Header-link " target="_blank" rel="noopener noreferrer" id="profile-link" href="https://github.com/jonathanc0101" >
<svg height="100" aria-hidden="true" viewBox="0 0 16 16" version="1.1" width="100" data-view-component="true">
<path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path>
</svg>
</a>
<a class="Header-link " target="_blank" rel="noopener noreferrer" href="https://www.linkedin.com/in/jonathan-cavia-6a341a151/" >
<svg xmlns="http://www.w3.org/2000/svg" class="loader__linkedin-logo" width="190" height="48" viewBox="0 0 190 48">
<path d="M58,27.22V41H51V28.88c0-3.7-2.07-5.24-4-5.24a5,5,0,0,0-5.14,4.85,4.34,4.34,0,0,0,0,.51V41H35V18h6.6v3.25h.09c.69-1.41,3.64-3.75,7.66-3.75S58,20.22,58,27.22ZM24,41h7V18H24ZM27.5,6.45a4.05,4.05,0,1,0,4.1,4.05,4,4,0,0,0-4-4ZM190,3.5v41a3.5,3.5,0,0,1-3.5,3.5h-41a3.5,3.5,0,0,1-3.5-3.5V3.5A3.5,3.5,0,0,1,145.5,0h41A3.5,3.5,0,0,1,190,3.5ZM156,18h-7V41h7Zm.6-7.5a4.1,4.1,0,1,0-4.15,4.05h.05a4,4,0,0,0,4.1-3.9ZM183,27.22c0-7-4.63-9.72-8.65-9.72s-7,2.34-7.66,3.75h-.09V18H160V41h7V29c0-3.69,2.51-5.33,4.95-5.33,2,0,4.05,1.54,4.05,5.24V41h7ZM8,7H0V41H21V34H8ZM108,29.77v2H91a1.33,1.33,0,0,0,.11.43c.58,1.93,2.67,3.56,5.75,3.56A6.3,6.3,0,0,0,102,33.52l5.1,3.18a12.72,12.72,0,0,1-10.45,4.8C89.94,41.5,84,37.42,84,29.59S90,17.5,96.44,17.5,108,21.81,108,29.77ZM101,27c0-2.4-1.56-4.38-4.75-4.38-3,0-5.09,2-5.25,4.38ZM85.26,18H76.68l-7.54,9.37H69V7H62V41h7V30h.14l7.72,11h8.77L76.2,28.43ZM128,7h7V41h-6.6V38h-.09c-.88,1.52-3.24,3.49-7.4,3.49-5,0-10.91-3.63-10.91-12,0-7.53,5.1-11.95,10.82-11.95a9.55,9.55,0,0,1,7.09,3H128Zm.3,22.49a5.74,5.74,0,0,0-5.59-5.89h-.15A5.54,5.54,0,0,0,116.89,29c0,.15,0,.29,0,.44a5.61,5.61,0,0,0,5.26,5.94h.4A5.83,5.83,0,0,0,128.3,29.49Z" fill="currentColor"></path>
</svg>
</a>
</div>
</body>
</html>