-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge.html
54 lines (51 loc) · 2.16 KB
/
challenge.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
<!DOCTYPE html>
<html>
<head>
<title>Contact - Renan's Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
</head>
<body>
<header>
<h1>Renan's Challenges</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="challenge">
<h2> Current challenges in my company</h2>
<p>
When I assumed responsibility for the purchasing department, I began collaborating with the development team
to create web scrapings and crawlers.
<br>
Our goal was to monitor competitor pricing, enabling us to make more informed, margin-boosting purchase
decisions.
<br>
We implemented alerts for low prices and various other metrics, utilizing Python and SQL for these tasks.
<br><br>
Subsequently, I adopted Airflow to manage our data pipelines, further enhancing our capabilities by integrating
report generation through the Google Sheets API.
<br>
We also explored rapid prototyping of applications within the Google ecosystem.
<br>
This approach allowed us to test new ideas in a more agile and cost-effective manner, circumventing the need
for extensive development.<br><br>
In parallel, I developed multiple automation processes to alleviate manual workloads across different teams.
<br>
This effort included integrating third-party APIs to access vital information, such as product stock levels
and sales conditions.<br><br>
Most recently, I embarked on constructing our company's Data Warehouse single-handedly.
<br>
The inaugural data mart
I established focuses on customer orders.
<br>
I am responsible for its continual update, employing SQL queries and
leveraging Airflow's scheduling capabilities.
</p>
</section>
</body>
</html>