Skip to content

Commit 1be2cc4

Browse files
committed
Added software results and publications
1 parent 01f15ca commit 1be2cc4

7 files changed

Lines changed: 121 additions & 1 deletion

File tree

_data/outputs.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
software:
2+
- title: "Lithops"
3+
description: "A multi-cloud framework for big data analytics and embarrassingly parallel jobs that transparently scales local python code to the cloud."
4+
link: "https://lithops-cloud.github.io/"
5+
6+
publications:
7+
- title: "Dataplug: Unlocking extreme data analytics with on-the-fly dynamic partitioning of unstructured data"
8+
url: "https://zenodo.org/records/14161823"
9+
- title: "Exploiting Inherent Elasticity of Serverless in Algorithms with Unbalanced and Irregular Workloads"
10+
url: "https://repositori.urv.cat/estatic/PC0011/ca_imarina9435106.html"
11+
- title: "Intelligent Optimization of Distributed Pipeline Execution in Serverless Platforms: A Predictive Model Approach"
12+
url: "https://dl.acm.org/doi/10.1145/3702634.3702951"
13+
- title: "Exploring Secure and Efficient Temporary Data Sharing between co-located Kubernetes Containers"
14+
url: "https://zenodo.org/records/15097005"
15+
- title: "Burst Computing: Quick, Sudden, Massively Parallel Processing on Serverless Resources"
16+
url: "https://zenodo.org/records/17662627"
17+
- title: "Optimizing WebAssembly Garbage Collection in Go: Performance Insights, Tuning Tips, and Batch Execution Strategies"
18+
url: "https://zenodo.org/records/17987782"
19+
- title: "Dynamic Selection and Detection of Spreading Factors and Channels for End-Node Devices of LoRa Networks"
20+
url: "https://www.mdpi.com/2079-9292/14/17/3341"
21+
- title: "Let It Unthread: The Good, The Bad and The Ugly within WebAssembly Portable Multithreading"
22+
url: "https://zenodo.org/records/18037245"
23+
- title: "The Hidden Dangers of Public Serverless Repositories: An Empirical Security Assessment"
24+
url: "https://arxiv.org/pdf/2510.17311"
25+
- title: "Dynamic Frequency-Based Fingerprinting Attacks against Modern Sandbox Environments"
26+
url: "https://arxiv.org/abs/2404.10715"
27+
- title: "Rethinking the mobile edge for vehicular services"
28+
url: "https://www.sciencedirect.com/science/article/pii/S138912862400519X"
29+
- title: "Energy-Efficient Task Computation at the Edge for Vehicular Services"
30+
url: "https://arxiv.org/abs/2511.18449"

_i18n/en.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ test: CLOUDLESS
22
legend: "Edge information computing platform"
33
objectives: "Objectives"
44
results: "Results"
5+
software: "Software Results"
6+
publications: "Publications"
57
partners: "Partners"
68
about: "About"
79

_i18n/es.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ test: CLOUDLESS
22
legend: "Plataforma de computación de información en el borde"
33
objectives: "Objetivos"
44
results: "Resultados"
5+
software: "Resultados Software"
6+
publications: "Publicaciones"
57
partners: "Socios"
68
about: "Sobre"
79

_includes/nav.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
<li class="page-scroll">
2525
<a href="#results">{% t results %}</a>
2626
</li>
27+
<li class="page-scroll">
28+
<a href="#software">{% t software %}</a>
29+
</li>
30+
<li class="page-scroll">
31+
<a href="#publications">{% t publications %}</a>
32+
</li>
2733
<li class="page-scroll">
2834
<a href="#portfolio">{% t partners %}</a>
2935
</li>

_includes/publications.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!-- Publications Section -->
2+
<section class="success" id="publications">
3+
<div class="container">
4+
<div class="row">
5+
<div class="col-lg-12 text-center">
6+
<h2>{% t publications %}</h2>
7+
<hr class="star-light">
8+
</div>
9+
</div>
10+
<div class="row">
11+
<div class="col-lg-12">
12+
<div class="table-responsive">
13+
<table class="table" style="text-align: left; color: white;">
14+
<thead>
15+
<tr>
16+
<th style="border-bottom: 2px solid white;">Title</th>
17+
<th style="border-bottom: 2px solid white; text-align: center;">Link</th>
18+
</tr>
19+
</thead>
20+
<tbody>
21+
{% for publication in site.data.outputs.publications %}
22+
<tr>
23+
<td style="border-top: 1px solid rgba(255,255,255,0.3);">{{ publication.title }}</td>
24+
<td style="border-top: 1px solid rgba(255,255,255,0.3); text-align: center;">
25+
<a href="{{ publication.url }}" target="_blank" style="color: white; text-decoration: underline;">
26+
<i class="fa fa-external-link"></i> Open
27+
</a>
28+
</td>
29+
</tr>
30+
{% endfor %}
31+
</tbody>
32+
</table>
33+
</div>
34+
</div>
35+
</div>
36+
</div>
37+
</section>

_includes/software.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!-- Software Results Section -->
2+
<section id="software">
3+
<div class="container">
4+
<div class="row">
5+
<div class="col-lg-12 text-center">
6+
<h2>{% t software %}</h2>
7+
<hr class="star-primary">
8+
</div>
9+
</div>
10+
<div class="row">
11+
<div class="col-lg-12">
12+
<div class="table-responsive">
13+
<table class="table table-striped" style="text-align: left">
14+
<thead>
15+
<tr>
16+
<th width="20%">Name</th>
17+
<th width="60%">Description</th>
18+
<th width="20%">Link</th>
19+
</tr>
20+
</thead>
21+
<tbody>
22+
{% for item in site.data.outputs.software %}
23+
<tr>
24+
<td><strong>{{ item.title }}</strong></td>
25+
<td>{{ item.description }}</td>
26+
<td style="text-align: center;">
27+
<a href="{{ item.link }}" target="_blank" class="btn btn-default btn-sm">
28+
<i class="fab fa-github"></i> Repository
29+
</a>
30+
</td>
31+
</tr>
32+
{% endfor %}
33+
</tbody>
34+
</table>
35+
</div>
36+
</div>
37+
</div>
38+
</div>
39+
</section>

_layouts/default.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
{% include header.html %}
88

99
{% include objectives.html %}
10+
11+
{% include software.html %}
12+
{% include publications.html %}
13+
1014
{% include portfolio_grid.html %}
1115
{% include about.html %}
1216

@@ -15,4 +19,4 @@
1519
{% include js.html %}
1620
</body>
1721

18-
</html>
22+
</html>

0 commit comments

Comments
 (0)