Skip to content

Commit

Permalink
Merge branch 'master' of github.com:aleon1220/aleon1220.github.io
Browse files Browse the repository at this point in the history
  • Loading branch information
aleon1220 committed Feb 15, 2024
2 parents 431309a + b843790 commit fb38bb9
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 38 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
33 changes: 27 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand All @@ -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)

Expand Down Expand Up @@ -87,7 +94,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
Expand All @@ -97,10 +110,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 :-)

Expand Down
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ 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/
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
twitter: https://twitter.com/aleon1220
Expand Down
3 changes: 1 addition & 2 deletions _includes/cv.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- .resume -->
<div id="resume" class="content_2">
<!-- .title -->
<h1 class="h-bloc">Andres Leon Rangel Resume - CV</h1>
<h1 class="h-bloc">Andres Leon Rangel CV</h1>

<div class="row">

Expand All @@ -19,7 +19,6 @@ <h1 class="h-bloc">Andres Leon Rangel Resume - CV</h1>
<div class="skillbar clearfix" data-percent="95%">
<div class="skillbar-title"><span>Micro Services Architecture</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent">95%</div>
</div>

<!-- /.skillbar -->
Expand Down
17 changes: 9 additions & 8 deletions _includes/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ <h1 class="h-bloc">Profile - About Me</h1>
<li>
<i class="glyphicon glyphicon-map-marker"></i>
<label>Address</label>
<span class="value">Auckland , New Zealand</span>
<span class="value">New Zealand</span>
<div class="clear"></div>
</li>

<li>
<i class="glyphicon glyphicon-envelope"></i>
<label>Email</label>
<span class="value">Contact me on LinkedIn</span>
<span class="value">Contact me on LinkedIn <a href="{{site.linkedin}}"><i class="fa fa-linkedin"></i></a> </span>
<div class="clear"></div>
</li>

<li>
<i class="glyphicon glyphicon-phone"></i>
<label>Phone</label>
<span class="value">Contact me on LinkedIn</span>
<span class="value">Contact me on LinkedIn <a href="{{site.linkedin}}"><i class="fa fa-linkedin"></i></a></span>
<div class="clear"></div>
</li>

Expand All @@ -58,15 +58,16 @@ <h1 class="h-bloc">Profile - About Me</h1>

<p style="margin-bottom:20px">
<i class="fa fa-quote-left"></i>
Currently serving at Accenture <span class="badge badge-success">hired Sept 2021</span>
Cloud Computing and strong DevOps Practices.
Currently serving at Accenture <span class="badge badge-success">Serving from Sept 2021</span>
<i class="fa fa-quote-right"></i>
</p>

<p style="margin-bottom:20px">
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.
</p>
</div>
<!-- End left-wrap -->
Expand Down
27 changes: 7 additions & 20 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,30 +67,27 @@ <h6><span class="fa fa-map-marker"></span> {{ site.location }}</h6>

<!-- Profile Description -->
<div id="profile_desc">
<p>
My goal is to achieve CI/CD Releasing software safely, reliably & continously
</p>
<p>Expert cloud engineer, DevSecOps resilient solutions, SRE, and high-velocity software delivery</p>
</div>
<!-- End Profile Description -->

<!-- Name -->
<div id="profile_social">
<h6>My Social Profiles</h6>
<a href="{{site.github}}"><i class="fa fa fa-github"></i></a>
<!-- Font awesome icons https://fontawesome.com/icons -->
<h6>Online Presence</h6>
<a href="{{site.linkedin}}"><i class="fa fa-linkedin"></i></a>
<a href="{{site.medium}}"><i class="fa fa-spinner"></i></a>
<a href="{{site.twitter}}"><i class="fa fa-twitter"></i></a>
<a href="{{site.github}}"><i class="fa fa-github"></i></a>
<a href="{{site.medium}}"><i class="fa fa-brands fa-medium"></i></a>
<a href="{{site.hashnode}}"></a><i class="fa-brands fa-hashnode"></i></a>
<a href="{{site.facebook}}"><i class="fa fa-facebook"></i></a>
<div class="clear"></div>
</div>
<!-- End Name -->

<!-- <div id="profile_desc"> -->
<!-- <p> -->
<!-- More Templates <a href="https://github.com/jekyller" target="_blank" title="jekyller" class="a-footer">Jekyller</a> and <a href="https://themeforest.net/item/flexyvcard-responsive-vcard-template-/7158750" target="_blank" title="flexycodes" class="a-footer">Flexycodex</a> -->
<!-- </p> -->
<!-- </div> -->

</div>
<!-- End profile information -->
</div>
Expand Down Expand Up @@ -119,7 +116,7 @@ <h6>My Social Profiles</h6>
</li>

<li class="tabs-blog hi-icon-wrap hi-icon-effect-5 hi-icon-effect-5a" data-tab-name="blog">
<span class="tite-list">blog</span>
<span class="tite-list">Andres.NZ Blog</span>
<i class="fa fa-bullhorn icon_menu"></i>
</li>
<li class="tabs-contact hi-icon-wrap hi-icon-effect-5 hi-icon-effect-5a" data-tab-name="contact" style="margin-bottom: 48px !important;">
Expand All @@ -145,21 +142,13 @@ <h6>My Social Profiles</h6>
{% include /contact.html %}

</div><!-- End #resp-tabs-container -->

</div><!-- End verticalTab -->

</div><!-- End flexy_content -->

</div><!-- End row -->

</div><!-- End col-md-12 -->

</div><!-- End row -->

</div><!-- End container -->

</section><!-- End Content -->

</div><!-- End wrapper -->

<!-- Switcher -->
Expand All @@ -181,7 +170,6 @@ <h3>Theme Color</h3>
</ul>
</div>
<div>
<h3 class="layouts">Profile Image</h3>
<div id="show">
<div class="clean-check">
Expand All @@ -192,7 +180,6 @@ <h3 class="layouts">Profile Image</h3>
<label for="r2"><span></span>Fixed image</label>
</div>
</div>
<h3 class="layouts">Page Builder</h3>
<div id="show">
<div class="clean-check" style="padding-left: 30px;">
Expand Down

0 comments on commit fb38bb9

Please sign in to comment.