Skip to content

Commit 2a7ea17

Browse files
committed
Some more projects
1 parent 5da2173 commit 2a7ea17

23 files changed

+690
-231
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: awesome-3d-point-cloud-denoising
33
tools: [HTML]
4-
image: https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.cs.cmu.edu%2F~kmcrane%2FProjects%2FDDG%2F&psig=AOvVaw1DtDKGM1wxZxmckGDVfpP2&ust=1737374313499000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCIi48-jdgYsDFQAAAAAdAAAAABAE
4+
image: https://www.cs.cmu.edu/~kmcrane/Projects/DDG/teaser.svg
55
description: A curated list of awesome 3D point cloud denoising papers
66
external_url: https://github.com/agarnung/awesome-3d-point-cloud-denoising
77
---

_projects/pi-memorizer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: pi-memorizer
33
tools: [JavaScript, CSS, HTML]
4-
image: https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.cnn.com%2F2017%2F03%2F14%2Fus%2Fpi-day-things-to-know-trnd%2Findex.html&psig=AOvVaw3IrQJ15c8ZWm9bxBLbuLSZ&ust=1737373905756000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCOChu6XcgYsDFQAAAAAdAAAAABAE
5-
description:A game to memorize arbitrary digits of π
4+
image: https://media.cnn.com/api/v1/images/stellar/prod/150313105721-pi-day-graphic.jpg?q=x_2,y_0,h_898,w_1596,c_crop/h_653,w_1160/f_webp
5+
description: A game to memorize arbitrary digits of aprox. 22/7
66
external_url: https://agarnung.github.io/pi-memorizer/
77
---

_projects/x86-64-assembly-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: x86-64-assembly-intro
33
tools: [Assembly, C, C++, Shell]
4-
image: https://www.google.com/url?sa=i&url=https%3A%2F%2Fkids.nationalgeographic.com%2Fhistory%2Farticle%2Fada-lovelace&psig=AOvVaw1g6zRRARPZO0wQncVC7jtL&ust=1737374022949000&source=images&cd=vfe&opi=89978449&ved=0CBUQjRxqFwoTCMD65d3cgYsDFQAAAAAdAAAAABAE
4+
image: https://www.the-tls.co.uk/wp-content/uploads/sites/7/2019/11/Babbages_Analytical_Engine_1834-1871._9660574685.jpg?resize=1024,576
55
description: Introductory exercises to assembly language
66
external_url: https://github.com/agarnung/x86-64-assembly-intro
77
---

_site/generate_repos.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import os
22
import requests
3-
import yaml
43

5-
# No usaremos token, así que solo listamos los repos públicos
4+
# No usaremos token, así que solo listamos los repos públicos.
5+
# Pero esto también limita las posibles solicitudes a 60 por hora.
66
USERNAME = "agarnung"
77

88
# Endpoint de la API de GitHub para listar repositorios públicos
@@ -32,20 +32,19 @@
3232
else:
3333
languages = ["Not specified"]
3434

35-
3635
# Formato del portfolio
37-
yaml_content = f"""---
36+
content = f"""---
3837
name: {name}
3938
tools: {languages}
4039
image: PLACE_YOUR_FULL_URL_HERE_IF_ANY
4140
description: {description}
4241
external_url: {html_url}
4342
---"""
4443

45-
# Cada YAML tiene el nombre del repo
46-
yaml_filename = os.path.join("repos_metadata", f"{name}.yaml")
47-
with open(yaml_filename, "w") as file:
48-
file.write(yaml_content)
44+
# Cada archivo tiene el nombre del repo
45+
filename = os.path.join("repos_metadata", f"{name}.md")
46+
with open(filename, "w") as file:
47+
file.write(content)
4948

5049
print(f"Archivo generado para el repositorio: {name}")
5150

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
<!DOCTYPE html>
2+
3+
<!--
4+
portfolYOU Jekyll theme by yousinix
5+
Free for personal and commercial use under the MIT license
6+
https://github.com/yousinix/portfolYOU
7+
-->
8+
9+
<html lang="en" class="h-100">
10+
11+
<head>
12+
13+
14+
15+
16+
17+
18+
19+
<meta charset="utf-8">
20+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
21+
<meta name="viewport" content="width=device-width, initial-scale=1">
22+
23+
<meta property="og:type" content="website">
24+
<meta property="og:title" content="agarnung.github.io">
25+
<meta property="og:description" content="My portfolio. This same webpage. Meta-Internet stuff.">
26+
<meta property="og:image" content="https://avatars.githubusercontent.com/u/191017814?s=400&u=2f077960138f20824e6286bfd7b7375126c0487d&v=4">
27+
28+
<title>agarnung.github.io</title>
29+
<meta name="description" content="My portfolio. This same webpage. Meta-Internet stuff.">
30+
31+
<link rel="shortcut icon" type="image/x-icon" href="/assets/favicon.ico">
32+
33+
<!-- Theme style -->
34+
<script src="/assets/js/theme.js"></script>
35+
36+
<!-- Font Awesome CDN -->
37+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
38+
39+
<!-- Bootstrap CSS CDN -->
40+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
41+
42+
<!-- Animate CSS CDN -->
43+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.css">
44+
45+
<!-- Custom CSS -->
46+
<link rel="stylesheet" href="/assets/css/style.css">
47+
48+
</head>
49+
50+
51+
<body class="h-100 d-flex flex-column">
52+
53+
<main class="flex-shrink-0 container mt-5">
54+
<nav class="navbar navbar-expand-lg navbar-themed">
55+
56+
<a class="navbar-brand" href="/"><h5><b>agarnung.github.io</b></h5></a>
57+
58+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
59+
<i class="fas fa-1x fa-bars text-themed"></i>
60+
</button>
61+
62+
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
63+
<div class="navbar-nav ml-auto"><a class="nav-item nav-link active" href="/projects/">Projects</a>
64+
65+
<a class="nav-item nav-link " href="/blog/">Blog</a>
66+
67+
<a class="nav-item nav-link " href="/about/">About</a>
68+
69+
70+
71+
<span id="theme-toggler" class="nav-item nav-link" role="button" onclick="toggleTheme()"></span>
72+
</div>
73+
</div>
74+
75+
</nav>
76+
<div class="col-lg-10 mx-auto mt-5 markdown-body">
77+
78+
79+
</div>
80+
</main>
81+
<footer class="mt-auto py-3 text-center">
82+
83+
<small class="text-muted mb-2">
84+
<i class="fas fa-code"></i> by <strong>Alejandro Garnung Menéndez</strong>
85+
</small>
86+
87+
<div class="container-fluid justify-content-center"><a class="social mx-1" href="mailto:[email protected]"
88+
style="color: #6c757d"
89+
onMouseOver="this.style.color='#db4437'"
90+
onMouseOut="this.style.color='#6c757d'">
91+
<i class="fas fa-envelope fa-1x"></i>
92+
</a><a class="social mx-1" href="https://www.github.com/agarnung"
93+
style="color: #6c757d"
94+
onMouseOver="this.style.color='#333333'"
95+
onMouseOut="this.style.color='#6c757d'">
96+
<i class="fab fa-github fa-1x"></i>
97+
</a><a class="social mx-1" href="https://www.linkedin.com/in/alejandro-garnung-menéndez-640085342"
98+
style="color: #6c757d"
99+
onMouseOver="this.style.color='#007bb5'"
100+
onMouseOut="this.style.color='#6c757d'">
101+
<i class="fab fa-linkedin-in fa-1x"></i>
102+
</a>
103+
104+
</div>
105+
106+
</footer>
107+
108+
109+
110+
<!-- GitHub Buttons -->
111+
<script async defer src="https://buttons.github.io/buttons.js"></script>
112+
113+
<!-- jQuery CDN -->
114+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
115+
116+
<!-- Popper.js CDN -->
117+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
118+
119+
<!-- Bootstrap JS CDN -->
120+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
121+
122+
<!-- wow.js CDN & Activation -->
123+
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.js"></script>
124+
<script> new WOW().init(); </script>
125+
126+
<!-- Initialize all tooltips -->
127+
<script>
128+
$(function () {
129+
$('[data-toggle="tooltip"]').tooltip()
130+
})
131+
</script>
132+
</body>
133+
134+
</html>

_site/projects/agarnung-github-io.yaml

Whitespace-only changes.

_site/projects/agarnung.yaml

Whitespace-only changes.

_site/projects/asciimage.yaml

Whitespace-only changes.
Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
<!DOCTYPE html>
2+
3+
<!--
4+
portfolYOU Jekyll theme by yousinix
5+
Free for personal and commercial use under the MIT license
6+
https://github.com/yousinix/portfolYOU
7+
-->
8+
9+
<html lang="en" class="h-100">
10+
11+
<head>
12+
13+
14+
15+
16+
17+
18+
19+
<meta charset="utf-8">
20+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
21+
<meta name="viewport" content="width=device-width, initial-scale=1">
22+
23+
<meta property="og:type" content="website">
24+
<meta property="og:title" content="awesome-3d-point-cloud-denoising">
25+
<meta property="og:description" content="A curated list of awesome 3D point cloud denoising papers">
26+
<meta property="og:image" content="https://www.cs.cmu.edu/~kmcrane/Projects/DDG/teaser.svg">
27+
28+
<title>awesome-3d-point-cloud-denoising</title>
29+
<meta name="description" content="A curated list of awesome 3D point cloud denoising papers">
30+
31+
<link rel="shortcut icon" type="image/x-icon" href="/assets/favicon.ico">
32+
33+
<!-- Theme style -->
34+
<script src="/assets/js/theme.js"></script>
35+
36+
<!-- Font Awesome CDN -->
37+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
38+
39+
<!-- Bootstrap CSS CDN -->
40+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
41+
42+
<!-- Animate CSS CDN -->
43+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.css">
44+
45+
<!-- Custom CSS -->
46+
<link rel="stylesheet" href="/assets/css/style.css">
47+
48+
</head>
49+
50+
51+
<body class="h-100 d-flex flex-column">
52+
53+
<main class="flex-shrink-0 container mt-5">
54+
<nav class="navbar navbar-expand-lg navbar-themed">
55+
56+
<a class="navbar-brand" href="/"><h5><b>agarnung.github.io</b></h5></a>
57+
58+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
59+
<i class="fas fa-1x fa-bars text-themed"></i>
60+
</button>
61+
62+
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
63+
<div class="navbar-nav ml-auto"><a class="nav-item nav-link active" href="/projects/">Projects</a>
64+
65+
<a class="nav-item nav-link " href="/blog/">Blog</a>
66+
67+
<a class="nav-item nav-link " href="/about/">About</a>
68+
69+
70+
71+
<span id="theme-toggler" class="nav-item nav-link" role="button" onclick="toggleTheme()"></span>
72+
</div>
73+
</div>
74+
75+
</nav>
76+
<div class="col-lg-10 mx-auto mt-5 markdown-body">
77+
78+
79+
</div>
80+
</main>
81+
<footer class="mt-auto py-3 text-center">
82+
83+
<small class="text-muted mb-2">
84+
<i class="fas fa-code"></i> by <strong>Alejandro Garnung Menéndez</strong>
85+
</small>
86+
87+
<div class="container-fluid justify-content-center"><a class="social mx-1" href="mailto:[email protected]"
88+
style="color: #6c757d"
89+
onMouseOver="this.style.color='#db4437'"
90+
onMouseOut="this.style.color='#6c757d'">
91+
<i class="fas fa-envelope fa-1x"></i>
92+
</a><a class="social mx-1" href="https://www.github.com/agarnung"
93+
style="color: #6c757d"
94+
onMouseOver="this.style.color='#333333'"
95+
onMouseOut="this.style.color='#6c757d'">
96+
<i class="fab fa-github fa-1x"></i>
97+
</a><a class="social mx-1" href="https://www.linkedin.com/in/alejandro-garnung-menéndez-640085342"
98+
style="color: #6c757d"
99+
onMouseOver="this.style.color='#007bb5'"
100+
onMouseOut="this.style.color='#6c757d'">
101+
<i class="fab fa-linkedin-in fa-1x"></i>
102+
</a>
103+
104+
</div>
105+
106+
</footer>
107+
108+
109+
110+
<!-- GitHub Buttons -->
111+
<script async defer src="https://buttons.github.io/buttons.js"></script>
112+
113+
<!-- jQuery CDN -->
114+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
115+
116+
<!-- Popper.js CDN -->
117+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
118+
119+
<!-- Bootstrap JS CDN -->
120+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
121+
122+
<!-- wow.js CDN & Activation -->
123+
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.js"></script>
124+
<script> new WOW().init(); </script>
125+
126+
<!-- Initialize all tooltips -->
127+
<script>
128+
$(function () {
129+
$('[data-toggle="tooltip"]').tooltip()
130+
})
131+
</script>
132+
</body>
133+
134+
</html>

_site/projects/awesome-3d-point-cloud-denoising.yaml

Whitespace-only changes.

0 commit comments

Comments
 (0)