From 638aa50189bba4e581cec3d02dcf478574e8f0a3 Mon Sep 17 00:00:00 2001 From: andres LeonRangel Date: Mon, 10 Oct 2022 22:10:10 +1300 Subject: [PATCH 1/5] Added official Docker image docs --- README.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a0d409..c6ddc2d 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,13 @@ Docker makes it easy for you to test Jekyll Pages ## Build Jekyll Page -build locally +set the version before running the build locally + +there is this official [builder image](https://github.com/envygeeks/jekyll-docker#readme) + +```bash +VERSION="3.8.6" +``` - Install Docker. [Docker installation instructions](https://docs.docker.com/get-docker/) - Go to the directory where you have the source code of the site @@ -97,10 +103,18 @@ build locally docker run --rm -it --volume="$PWD:/srv/jekyll" --volume="$PWD/vendor/bundle:/usr/local/bundle" \ --env VERBOSE=true \ --env JEKYLL_ENV=production \ - jekyll/jekyll:3.8 jekyll build + jekyll/jekyll:$VERSION jekyll build +``` + +### Bundler + +```bash +docker run --rm -it --volume="$PWD:/srv/jekyll" --volume="$PWD/vendor/bundle:/usr/local/bundle" \ + --env JEKYLL_ENV=production \ + jekyll/jekyll:$VERSION jekyll bundle install ``` -## Serve Page +## Serve Page locally :-) From f41c9d92194e1a034b0cd08126bf61748b004c6d Mon Sep 17 00:00:00 2001 From: aleonrangel Date: Tue, 25 Jul 2023 10:21:49 +1200 Subject: [PATCH 2/5] Changed order online profiles --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index b86487c..d2de1e6 100644 --- a/index.html +++ b/index.html @@ -75,12 +75,12 @@
{{ site.location }}
-
My Social Profiles
- +
Online Profiles
+ - +
From 91035d421e069d5896617633ab4348ce7fb53aae Mon Sep 17 00:00:00 2001 From: aleonrangel Date: Tue, 25 Jul 2023 10:27:09 +1200 Subject: [PATCH 3/5] linkedin new URL dependabot 35 https://github.com/aleon1220/aleon1220.github.io/security/dependabot/35 --- Gemfile.lock | 2 +- _config.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f32baff..1c5ef22 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -22,7 +22,7 @@ GEM rails-html-sanitizer (~> 1.0, >= 1.0.3) activejob (4.2.11.3) activesupport (= 4.2.11.3) - globalid (>= 0.3.0) + globalid (>= 0.4.2) activemodel (4.2.11.3) activesupport (= 4.2.11.3) builder (~> 3.1) diff --git a/_config.yml b/_config.yml index 118c95b..bd03a05 100644 --- a/_config.yml +++ b/_config.yml @@ -12,7 +12,7 @@ cvDownload: https://www.dropbox.com/s/3poq3t3jofawnia/CV-WWWandresNZ.pdf?dl=0 # blogger: https://aleonsocial.blogspot.com/ facebook: http://www.facebook.com/aleon1220 github: https://github.com/aleon1220 -linkedin: https://www.linkedin.com/in/aleon1220/ +linkedin: https://www.linkedin.com/in/aleonrangel medium: https://medium.com/@aleon1220 scholar: https://scholar.google.com/citations?user=sOgChXwAAAAJ&hl=en # google Scholar Academic twitter: https://twitter.com/aleon1220 From 6b3afd056a65bbcc7dd1187a0ee0066498c43509 Mon Sep 17 00:00:00 2001 From: Andres Leon Rangel Date: Fri, 27 Oct 2023 15:12:58 +1300 Subject: [PATCH 4/5] improves profile description add hashnode blog --- _config.yml | 1 + index.html | 28 ++++++++++------------------ 2 files changed, 11 insertions(+), 18 deletions(-) diff --git a/_config.yml b/_config.yml index bd03a05..8088725 100644 --- a/_config.yml +++ b/_config.yml @@ -12,6 +12,7 @@ cvDownload: https://www.dropbox.com/s/3poq3t3jofawnia/CV-WWWandresNZ.pdf?dl=0 # blogger: https://aleonsocial.blogspot.com/ facebook: http://www.facebook.com/aleon1220 github: https://github.com/aleon1220 +hashnode: https://andres.hashnode.dev/ linkedin: https://www.linkedin.com/in/aleonrangel medium: https://medium.com/@aleon1220 scholar: https://scholar.google.com/citations?user=sOgChXwAAAAJ&hl=en # google Scholar Academic diff --git a/index.html b/index.html index d2de1e6..be7a226 100644 --- a/index.html +++ b/index.html @@ -68,29 +68,31 @@
{{ site.location }}

- My goal is to achieve CI/CD Releasing software safely, reliably & continously + Seasoned Cloud software Engineer with over 10 years of experience driving cloud adoption and modernization initiatives for global enterprises. Specialized in AWS, Azure, and GCP public cloud platforms with expertise in architecting and implementing secure, resilient cloud solutions utilizing IaaS, PaaS, containers, and serverless technologies. + Wide-ranging capabilities leading design, development, deployment, and optimization of cloud-native applications, microservices, CI/CD pipelines, infrastructure-as-code, and DevSecOps best practices. Instrumental in migrating legacy on-premises systems to public cloud through lift-and-shift and refactoring techniques. + + Deep expertise instrumenting cloud architecture with monitoring, logging, and automation to ensure reliability, availability and achieve operational excellence. Skilled at leveraging actionable metrics to drive continuous improvement. Passionate about empowering high velocity software delivery through technology, process optimization and a fail fast culture underpinned by a data-driven approach.

-
Online Profiles
+ +
Online Presence
- - + + + -
- - @@ -119,7 +121,7 @@
Online Profiles
  • - blog + Andres.NZ Blog
  • @@ -145,21 +147,13 @@
    Online Profiles
    {% include /contact.html %} - - - - - - - - @@ -181,7 +175,6 @@

    Theme Color

    -

    Profile Image

    @@ -192,7 +185,6 @@

    Profile Image

    -

    Page Builder

    From b8437900666f819b11cc03f4d4b6df41d1312343 Mon Sep 17 00:00:00 2001 From: aleonrangel Date: Fri, 27 Oct 2023 16:08:01 +1300 Subject: [PATCH 5/5] improves simplifies text descriptions --- README.md | 13 ++++++++++--- _includes/cv.html | 3 +-- _includes/profile.html | 17 +++++++++-------- index.html | 7 +------ 4 files changed, 21 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index c6ddc2d..43973dc 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,16 @@ Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://j - [Professional Profile](#professional-profile) - [Personal project--](#personal-project--) - [Test this project locally with Docker](#test-this-project-locally-with-docker) - - [Build Jekyll Page locally](#build-jekyll-page-locally) + - [Build Jekyll Page](#build-jekyll-page) + - [Bundler](#bundler) + - [Serve Page](#serve-page) + - [Jekyll Serve](#jekyll-serve) + - [bundle serve](#bundle-serve) + - [Jekyll Commands](#jekyll-commands) - [Update Gemfile.lock file for more dependencies](#update-gemfilelock-file-for-more-dependencies) - - [Serve Page locally :-)](#serve-page-locally--) - [Zappier integration](#zappier-integration) - [Email features](#email-features) + - [Format HTML emails](#format-html-emails) - [Debugging JavaScript](#debugging-javascript) - [Email call on submit()](#email-call-on-submit) - [Editing the Timeline at Timeline.js](#editing-the-timeline-at-timelinejs) @@ -28,7 +33,6 @@ Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://j ## About Me Servant of God masquerading as a DevOps Engineer Software Developer - Personal Page Andres Leon Rangel Born in Colombia grew up in Socorro Santander, Colombia moved to Bogota, Colombia @@ -38,6 +42,9 @@ God moved me to New Zealand 2017 Adopted by Kiwis 2020 ### Professional Profile +Seasoned cloud engineer skilled in architecting secure, resilient cloud solutions on AWS, Azure, and GCP. Expert in migrating legacy systems and empowering high velocity software delivery. + +Deep expertise instrumenting cloud architecture with monitoring, logging, and automation to ensure reliability, availability and achieve operational excellence. Skilled at leveraging actionable metrics to drive continuous improvement. Passionate about empowering high velocity software delivery through technology, process optimization and a fail fast culture underpinned by a data-driven approach. Migrated from [PasteBin.com](https://pastebin.com/raw/K8qm2NqZ) diff --git a/_includes/cv.html b/_includes/cv.html index 732b0e4..a96a173 100644 --- a/_includes/cv.html +++ b/_includes/cv.html @@ -1,7 +1,7 @@
    -

    Andres Leon Rangel Resume - CV

    +

    Andres Leon Rangel CV

    @@ -19,7 +19,6 @@

    Andres Leon Rangel Resume - CV

    Micro Services Architecture
    -
    95%
    diff --git a/_includes/profile.html b/_includes/profile.html index 5f16137..6b2ffb0 100644 --- a/_includes/profile.html +++ b/_includes/profile.html @@ -30,21 +30,21 @@

    Profile - About Me

  • - Auckland , New Zealand + New Zealand
  • - Contact me on LinkedIn + Contact me on LinkedIn
  • - Contact me on LinkedIn + Contact me on LinkedIn
  • @@ -58,15 +58,16 @@

    Profile - About Me

    - Currently serving at Accenture hired Sept 2021 - Cloud Computing and strong DevOps Practices. + Currently serving at Accenture Serving from Sept 2021

    - Contributor to New Zealand booming Information Technology sector. Communication, Developer of skills, Passionate, - practical learner, Curious, Creative, Doer, Includer, Activator, Positivity, - enjoys problem solving with software engineering. + Hands-on Cloud Software Engineer with over a decade of experience in driving cloud adoption and modernization for global enterprises. + Specialized in AWS, Azure, and GCP, with a knack for architecting secure, resilient cloud solutions. + A passionate, practical learner and problem solver, contributing to New Zealand’s booming IT sector. + Proficient in design, development, deployment, and optimization of cloud-native applications and DevSecOps best practices. + Instrumental in migrating legacy systems to the public cloud AWS, Azure and GCP.

    diff --git a/index.html b/index.html index be7a226..d454c51 100644 --- a/index.html +++ b/index.html @@ -67,12 +67,7 @@
    {{ site.location }}
    -

    - Seasoned Cloud software Engineer with over 10 years of experience driving cloud adoption and modernization initiatives for global enterprises. Specialized in AWS, Azure, and GCP public cloud platforms with expertise in architecting and implementing secure, resilient cloud solutions utilizing IaaS, PaaS, containers, and serverless technologies. - Wide-ranging capabilities leading design, development, deployment, and optimization of cloud-native applications, microservices, CI/CD pipelines, infrastructure-as-code, and DevSecOps best practices. Instrumental in migrating legacy on-premises systems to public cloud through lift-and-shift and refactoring techniques. - - Deep expertise instrumenting cloud architecture with monitoring, logging, and automation to ensure reliability, availability and achieve operational excellence. Skilled at leveraging actionable metrics to drive continuous improvement. Passionate about empowering high velocity software delivery through technology, process optimization and a fail fast culture underpinned by a data-driven approach. -

    +

    Expert cloud engineer, DevSecOps resilient solutions, SRE, and high-velocity software delivery