Skip to content

Commit

Permalink
Add cookie consent popup
Browse files Browse the repository at this point in the history
  • Loading branch information
eddymdz committed Jun 8, 2023
1 parent 0bc1007 commit a3f71db
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 13 deletions.
55 changes: 44 additions & 11 deletions layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
{{ partial "header.html" . }}

<body>
<!-- Cookie Consent by TermsFeed https://www.TermsFeed.com -->
<script type="text/javascript" src="https://www.termsfeed.com/public/cookie-consent/4.1.0/cookie-consent.js"
charset="UTF-8"></script>
<script type="text/javascript" charset="UTF-8">
document.addEventListener('DOMContentLoaded', function () {
cookieconsent.run({ "notice_banner_type": "simple", "consent_type": "express", "palette": "dark", "language": "en", "page_load_consent_levels": ["strictly-necessary"], "notice_banner_reject_button_hide": false, "preferences_center_close_button_hide": false, "page_refresh_confirmation_buttons": false, "website_name": "https://eduardomendez.info" });
});
</script>

<!--<a href="#" id="open_preferences_center">Update cookies preferences</a>-->

<noscript>Free cookie consent management tool by <a href="https://www.termsfeed.com/">TermsFeed</a></noscript>


<div class="container">
<div class="left">
<div class="profile">
Expand Down Expand Up @@ -69,6 +83,7 @@ <h3 class="title">Languages</h3>
</ul>
</div>
</div>

</div>
<div class="right">
<div class="about">
Expand Down Expand Up @@ -103,11 +118,18 @@ <h4>DevOps Engineer</h4>
<div class="year_company">
<h5>2023 - PRESENT</h5>
</div>
<small><a href="https://hiberus.com" target="_blank" class="enterprise_links">Hiberus</a></small>
<small><a href="https://hiberus.com" target="_blank"
class="enterprise_links">Hiberus</a></small>
<ul class="padding-list">
<li>I played a key role in migrating manually deployed applications to Jenkins and Ansible-based continuous integration and delivery environment for the Murcia Health Service. This transition not only eliminated the need for manual deployments but also greatly reduced the time required to deploy critical applications to testing and production environments.</li>
<li>I successfully implemented a variety of dashboards using Grafana and Kibana. These dashboards serve as invaluable decision-making tools, leveraging data stored in InfluxDB and Elastic Search.</li>
</ul>
<li>I played a key role in migrating manually deployed applications to Jenkins and
Ansible-based continuous integration and delivery environment for the Murcia Health
Service. This transition not only eliminated the need for manual deployments but also
greatly reduced the time required to deploy critical applications to testing and
production environments.</li>
<li>I successfully implemented a variety of dashboards using Grafana and Kibana. These
dashboards serve as invaluable decision-making tools, leveraging data stored in InfluxDB
and Elastic Search.</li>
</ul>
</div>
</div>
<div class="box" id="pukara">
Expand All @@ -119,20 +141,31 @@ <h5>2018 - 2023</h5>
<small><a href="https://pukara.es" target="_blank" class="enterprise_links">Pukara
LTD</a></small>
<ul class="padding-list">
<li>I designed and implemented DevOps pipelines for cloud-based applications using GitLab and <a href="https://github.com/eddymdz/eduardomendez.info/blob/main/.github/workflows/gh-pages.yml" target="_blank" alt="Take a look at an example of an action on GitHub created by me">GitHub Actions</a>, resulting in a significant and cost-effective solution for software delivery.</li>
<li>I implemented infraestructure-as-code practices using Terraform reducing the manual configuration efforts.</li>
<li>I architected highly available and fault-tolerant environments in AWS using Fargate, ECR, ECS, RDS, CloudFront, and S3. Improved scalability and achieved cost savings with a microservices approach based on Lambda functions.</li>
<li>I mentored a team of junior developers from an agile perspective, conducting regular knowledge-sharing sessions and providing guidance on best practices in cloud infrastructure management, CI/CD and automation technologies.</li>
<li>I designed and implemented DevOps pipelines for cloud-based applications using GitLab
and <a
href="https://github.com/eddymdz/eduardomendez.info/blob/main/.github/workflows/gh-pages.yml"
target="_blank"
alt="Take a look at an example of an action on GitHub created by me">GitHub
Actions</a>, resulting in a significant and cost-effective solution for software
delivery.</li>
<li>I implemented infraestructure-as-code practices using Terraform reducing the manual
configuration efforts.</li>
<li>I architected highly available and fault-tolerant environments in AWS using Fargate,
ECR, ECS, RDS, CloudFront, and S3. Improved scalability and achieved cost savings with a
microservices approach based on Lambda functions.</li>
<li>I mentored a team of junior developers from an agile perspective, conducting regular
knowledge-sharing sessions and providing guidance on best practices in cloud
infrastructure management, CI/CD and automation technologies.</li>
</ul>

</div>
</div>
<div class="box" id="xegmenta">
<div class="text">
<h4>Videoconference and Streaming Full Stack Software Developer</h4>
<div class="year_company">
<h5>2015 - 2018</h5>
</div>
</div>
<small><a href="https://xegmenta.com" target="_blank"
class="enterprise_links">Xegmenta</a></small>
<p>I worked here as a Full Stack Software Developer and Cloud Sysadmin for Videoconference and
Expand All @@ -156,7 +189,7 @@ <h5>2015 - 2018</h5>
<h4>DNSAdmin of ccTLD .ve</h4>
<div class="year_company">
<h5>2007 - 2013</h5>
</div>
</div>
<small><a href="https://nic.ve" target="_blank" class="enterprise_links">NIC.ve</a></small>
<p>I worked as a DNSAdmin for the Country Code Top Level Domain (.ve) of my country, also I
developed scripts and small applications using Perl and PHP. This experience was crucial for
Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<link rel="stylesheet" href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}"
crossorigin="anonymous" media="screen,print" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4TTSN39L6Y"></script>
<script>
<script data-cookie-consent="tracking" async src="https://www.googletagmanager.com/gtag/js?id=G-4TTSN39L6Y"></script>
<script data-cookie-consent="tracking">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
Expand Down

0 comments on commit a3f71db

Please sign in to comment.