Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump axios and browser-sync #48

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
360 changes: 188 additions & 172 deletions Gemfile.lock

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,38 @@ The Theme features:
2. `gulp`

## Run locally

You can use either use docker or install everything locally.

### Using docker

Run this command:

``` BASH
# npm install
# construction de l'image
docker compose build

# Lancement des conteneurs
docker-compose up -d
Pour ensuite jouer avec node et gulp :

# Installation des dépendances node
docker-compose exec node npm install

# lancement de la tâche « build »
docker-compose exec node gulp build


# Build
docker run --rm --volume="$PWD:/srv/jekyll" -it jekyll/jekyll:3.8 jekyll build
# Live serve/code
docker run --rm --volume="$PWD:/srv/jekyll" --name myblog -p 3000:4000 -it jekyll/jekyll:3.8 jekyll serve --watch
```


### Local installation

1. For Mac OS install [RVM](https://usabilityetc.com/articles/ruby-on-mac-os-x-with-rvm/)
2. Follow these [instructions](https://help.github.com/en/articles/setting-up-your-github-pages-site-locally-with-jekyll)
3. Run `bundle exec jekyll serve`
Expand Down
7 changes: 4 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Site settings
title: Alexandre Faria - Software Engineer
title: Alexandre Faria
description: About me description
# baseurl: "/particle" # the subpath of your site, e.g. /blog
# url: "localhost:3000" # the base hostname & protocol for your site e.g. http://willianjusten.com.br
Expand All @@ -11,8 +11,9 @@ With other 20 years of experience in engineering, I had the privilege of achievi
One of my proudest achievements was establishing the API strategy that now underpins our company's digital infrastructure.
After setting up API Gateway as a core component in our information System, I put in place the API training and get the chance to train many teammates all around the world, which will remain one of my most memorable human experiences.
Since 2019 I led the design of an authentication system and API Platform focused on customer data, ensuring compliance and bolstering trust with our users.
On the coding side, I spend most of my time in code review, definitively the best moment to grow and learn. Fortunately I still code (more interested in the backend side) obviously on APIs and authentication/security topics, but not only.
Sharing knowledge is what I prefer in my daily job. Open source world is also a fascinating topic for me."
On the coding side, I spend most of my time in code review, definitively the best moment to grow and learn.
Fortunately I still code (more interested in the backend side) obviously on APIs and authentication/security topics, but not only.
Sharing knowledge is what I prefer in my daily job. "
user_title: Senior Staff Engineer
email: contact@alexandrefaria.net
blog_username: lusoalex
Expand Down
4 changes: 4 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@
<meta name="description" content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">

<link rel="stylesheet" href="{{ "/assets/css/main.css" | prepend: site.baseurl }}">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/assets/favicon/site.webmanifest">
</head>
7 changes: 2 additions & 5 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@ <h1>
</h1>
<div class="header-icons">
<a aria-label="My Linkedin" target="_blank" href="https://www.linkedin.com/in/{{site.linkedin_username}}/"><i class="icon fa fa-linkedin" aria-hidden="true"></i></a>
<a aria-label="My Slideshare" target="_blank" href="https://www.slideshare.net/{{site.slideshare_username}}"><i class="icon fa fa-slideshare" aria-hidden="true"></i></a>
<!--<a aria-label="My blog" target="_blank" href="https://dev.to/@{{site.blog_username}}"><i class="icon fa fa-pencil" aria-hidden="true"></i></a>-->
<!--<a aria-label="My Medium" target="_blank" href="https://medium.com/@{{site.medium_username}}"><i class="icon fa fa-medium" aria-hidden="true"></i></a>-->
<a aria-label="My Medium" target="_blank" href="https://medium.com/@{{site.medium_username}}"><i class="icon fa fa-pencil" aria-hidden="true"></i></a>

<a aria-label="My Twitter" target="_blank" href="https://twitter.com/{{site.twitter_username}}"><i class="icon fa fa-twitter" aria-hidden="true"></i></a>
<a aria-label="My Github" target="_blank" href="https://github.com/{{site.github_username}}"><i class="icon fa fa-github-alt" aria-hidden="true"></i></a>
<a aria-label="My Medium" target="_blank" href="https://medium.com/@{{site.medium_username}}"><i class="icon fa fa-pencil" aria-hidden="true"></i></a>
<a aria-label="My Slideshare" target="_blank" href="https://www.slideshare.net/{{site.slideshare_username}}"><i class="icon fa fa-slideshare" aria-hidden="true"></i></a>
<a aria-label="Send email" href="mailto:{{site.email}}"><i class="icon fa fa-envelope"></i></a>
</div>
<div class="header-links">
Expand Down
2 changes: 1 addition & 1 deletion _includes/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h3> Gravitee.io </h3>
<div class="user-projects">
<div class="images-left">
<a href="https://vertx.io" target="_blank">
<img alt="Vertx logo" src="{{ "/assets/img/vertx.png" | prepend: site.baseurl }}" />
<img alt="Vertx logo" src="{{ "/assets/img/vertx_logo.png" | prepend: site.baseurl }}" />
</a>
</div>
<div class="contents-right">
Expand Down
2 changes: 1 addition & 1 deletion assets/css/main.css

Large diffs are not rendered by default.

Binary file added assets/favicon/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions assets/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Binary file removed assets/img/back.jpg
Binary file not shown.
Binary file added assets/img/back/0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/back/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/back/2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/back/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/back_light.jpg
Binary file not shown.
Binary file removed assets/img/docker2.png
Binary file not shown.
Binary file removed assets/img/git2.png
Binary file not shown.
Binary file removed assets/img/golang2.png
Binary file not shown.
Binary file removed assets/img/intellij2.png
Binary file not shown.
Binary file removed assets/img/mountains.jpg
Binary file not shown.
Binary file removed assets/img/skate.jpg
Binary file not shown.
Binary file added assets/img/vertx_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion assets/js/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified doc/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading