Skip to content

Commit 8c76994

Browse files
committed
Remove some comments and include homepage information and github action
1 parent e29259b commit 8c76994

5 files changed

Lines changed: 90 additions & 5 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-deploy:
10+
runs-on: ubuntu-24.04
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
with:
17+
submodules: true
18+
fetch-depth: 0
19+
20+
- name: Setup Hugo
21+
uses: peaceiris/actions-hugo@v2
22+
with:
23+
hugo-version: "latest"
24+
25+
- name: Build
26+
run: hugo --minify
27+
28+
- name: Deploy
29+
uses: peaceiris/actions-gh-pages@v3
30+
if: ${{ github.ref == 'refs/heads/main' }}
31+
with:
32+
github_token: ${{ secrets.GITHUB_TOKEN }}
33+
publish_branch: gh-pages
34+
publish_dir: ./public
41.8 KB
Loading

config/_default/languages.en.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ title = "AaronPB"
3737
# { foursquare = "https://foursquare.com/username" },
3838
{ github = "https://github.com/AaronPB" },
3939
# { gitlab = "https://gitlab.com/username" },
40-
# { google = "https://www.google.com/" },
40+
{ google-scholar = "https://scholar.google.com/citations?user=Hwvn4-kAAAAJ" },
4141
# { hashnode = "https://username.hashnode.dev" },
4242
# { instagram = "https://instagram.com/username" },
4343
# { itch-io = "https://username.itch.io" },

content/_index.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,55 @@
11
Hello there!!
2+
3+
In 2019 I completed my undergraduate studies in Mechanical Engineering and started my path in research, with several projects in different areas such as robotics, autonomous navigation, non-intrusive monitoring and biomechanics. In 2022 I combined part of these projects with a Masters in Industrial Engineering, which I managed to finish in 2024.
4+
5+
Currently, I am pursuing my PhD entitled “Control and optimisation techniques for efficient and sustainable integration of desalination technologies in CSP plants” at the Solar Thermal Applications Unit at Plataforma Solar de Almería, part of the Research Centre for Energy, Environment and Technology (CIEMAT).
6+
7+
### Topics of interest
8+
9+
{{< keywordList >}}
10+
{{< keyword >}} PV {{< /keyword >}}
11+
{{< keyword >}} CAES {{< /keyword >}}
12+
{{< keyword >}} Reverse Osmosis {{< /keyword >}}
13+
{{< keyword >}} Membrane Distillation {{< /keyword >}}
14+
{{< keyword >}} Control Engineering {{< /keyword >}}
15+
{{< keyword >}} ROS {{< /keyword >}}
16+
{{< keyword >}} SLAM {{< /keyword >}}
17+
{{< keyword >}} Navigation {{< /keyword >}}
18+
{{< keyword >}} NILM {{< /keyword >}}
19+
{{< keyword >}} Patricle Filtering {{< /keyword >}}
20+
{{< /keywordList >}}
21+
22+
### Tech Stack & Tools
23+
24+
{{< keywordList >}}
25+
{{< keyword >}} Java {{< /keyword >}}
26+
{{< keyword >}} Python {{< /keyword >}}
27+
{{< keyword >}} C++ {{< /keyword >}}
28+
{{< keyword >}} HTML {{< /keyword >}}
29+
{{< keyword >}} CSS {{< /keyword >}}
30+
{{< keyword >}} LaTeX {{< /keyword >}}
31+
{{< keyword >}} Markdown {{< /keyword >}}
32+
{{< /keywordList >}}
33+
34+
{{< keywordList >}}
35+
{{< keyword >}} ROS {{< /keyword >}}
36+
{{< keyword >}} Qt {{< /keyword >}}
37+
{{< keyword >}} Docker {{< /keyword >}}
38+
{{< keyword >}} Git {{< /keyword >}}
39+
{{< keyword >}} Gitlab {{< /keyword >}}
40+
{{< keyword >}} GitHub {{< /keyword >}}
41+
{{< keyword >}} GitHub Actions {{< /keyword >}}
42+
{{< keyword >}} CMake {{< /keyword >}}
43+
{{< keyword >}} Maven {{< /keyword >}}
44+
{{< /keywordList >}}
45+
46+
{{< keywordList >}}
47+
{{< keyword >}} Matlab {{< /keyword >}}
48+
{{< keyword >}} Octave {{< /keyword >}}
49+
{{< keyword >}} OpenCV {{< /keyword >}}
50+
{{< keyword >}} AutoCAD {{< /keyword >}}
51+
{{< keyword >}} Obsidian {{< /keyword >}}
52+
{{< keyword >}} VSCode {{< /keyword >}}
53+
{{< keyword >}} Eclipse {{< /keyword >}}
54+
{{< keyword >}} Sublime {{< /keyword >}}
55+
{{< /keywordList >}}

layouts/_default/publications.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ <h1 class="text-4xl font-bold mb-10 text-center">Publications</h1>
55
{{ $pubs := site.Data.publications }}
66
{{ if $pubs }}
77

8-
{{/* Primero agregamos el año a cada publicación para poder ordenar */}}
98
{{ $pubsWithYear := slice }}
109
{{ range $pubs }}
1110
{{ $issued := index . "issued" }}
@@ -14,10 +13,8 @@ <h1 class="text-4xl font-bold mb-10 text-center">Publications</h1>
1413
{{ $pubsWithYear = $pubsWithYear | append (dict "year" $year "data" .) }}
1514
{{ end }}
1615

17-
{{/* Ordenamos por año descendente */}}
1816
{{ $sorted := sort $pubsWithYear "year" "desc" }}
1917

20-
{{/* Variable para detectar cambios de año */}}
2118
{{ $currentYear := 0 }}
2219

2320
{{ range $sorted }}
@@ -63,7 +60,7 @@ <h3 class="text-lg font-semibold mb-2">{{ $pub.title }}</h3>
6360
{{ end }}
6461

6562
{{ else }}
66-
<p class="text-red-600 font-semibold">Could not load data/publications.json</p>
63+
<p class="text-red-600 font-semibold">Could not load data/publications.json</p>
6764
{{ end }}
6865
</section>
6966
{{ end }}

0 commit comments

Comments
 (0)