-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.html
149 lines (142 loc) · 5.07 KB
/
skills.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
<!DOCTYPE html>
<html>
<head>
<title>Skills & Experience - Renan's Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
</head>
<body>
<header>
<h1>Renan's Skills and Experiences</h1>
<nav>
<a href="index.html">Home</a>
<a href="skills.html">Skills & Experience</a>
<a href="challenge.html">Current Challenges</a>
<a href="projects.html">Projects</a>
<a href="certifications.html">Certifications</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section id="skills">
<h2>Skills & Experience</h2>
<table>
<thead>
<tr>
<th>Skill</th>
<th>Description</th>
<th>Role</th>
<th>Tools Used</th>
<th>Duration</th>
<th>Proficiency</th>
</tr>
</thead>
<tbody>
<!-- Python Section -->
<tr>
<td>Python</td>
<td>- Experience in building scalable backend systems using Python. <br>
- Integrating APIs and building web scraping systems to retrieve product data from our competitors. <br>
- Automations to reduce manual time of tasks, managing and maintaining data pipelines through airflow.
</td>
<td>Backend Developer</td>
<td>
<ul>
<li>Airflow</li>
<li>API Integrations</li>
<li>Web Scraping</li>
<li>Automations</li>
</ul>
</td>
<td>4+ years</td>
<td>
<div class="level" data-level="experienced" data-label="experienced">
<div class="level-inner"></div>
</div>
</td>
</tr>
<!-- Data Analysis Section -->
<tr>
<td>Data Analysis</td>
<td>- Experienced in querying, creating, maintaining and update tables, as well CRUD.<br>
- Also analyzing datasets to derive actionable insights.
</td>
<td>Data Analyst</td>
<td>
<ul>
<li>Machine Learning (intensive course)</li>
<li>Power BI</li>
<li>SQL</li>
</ul>
</td>
<td>+5 years</td>
<td>
<div class="level" data-level="experienced" data-label="experienced">
<div class="level-inner"></div>
</div>
</td>
</tr>
<!-- Data Warehouse / Data Mart -->
<tr>
<td>Data Warehouse</td>
<td>- Currently developing a Data Warehouse, creating data mart orders based on Kimball's dimensional
<br>data modeling principles<br>
- This is a self-driven project, transforming OLTP tables into a DW structure
</td>
<td>Data Engineer</td>
<td>
<ul>
<li>Data Warehouse/Data Mart</li>
<li>OLTP/OLAP</li>
</ul>
</td>
<td>few months (working currently)</td>
<td>
<div class="level" data-level="beginner" data-label="beginner">
<div class="level-inner"></div>
</div>
</td>
</tr>
<!-- App Sheet and Google sheet-->
<tr>
<td>App Sheet: Google</td>
<td>- Used app sheet from google to create apps to help our buyers to purchase better <br>
and helped our operational team manage our stock better, also make picking/pack <br>
- Integration with google sheets API made our team stop losing time with manual excel tasks
</td>
<td>Data Engineer</td>
<td>
<ul>
<li>App Sheet</li>
<li>Google Sheets API</li>
</ul>
</td>
<td>1 year</td>
<td>
<div class="level" data-level="intermediate" data-label="intermediate">
<div class="level-inner"></div>
</div>
</td>
</tr>
<!-- JavaScript/TS Section -->
<tr>
<td>JavaScript/TS</td>
<td>- Experience in front-end development using JavaScript and TypeScript.</td>
<td>- Front-end Developer</td>
<td>
<ul>
<li>DOM Manipulation</li>
<li>API Fetching</li>
</ul>
</td>
<td>1 year</td>
<td>
<div class="level" data-level="intermediate" data-label="intermediate">
<div class="level-inner"></div>
</div>
</td>
</tr>
</tbody>
</table>
</section>
<script src="assets/js/script.js"></script>
</body>
</html>