-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (96 loc) · 5.05 KB
/
index.html
File metadata and controls
118 lines (96 loc) · 5.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Centro de conocimiento - David Restrepo</title>
<link rel="icon" type="image/png" href="https://storage.googleapis.com/davo-res-public/research/favicon.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../style.css">
<link rel="stylesheet" href="./style.css">
</head>
<body class="body-background">
<nav class="navbar navbar-light fixed-top nav-background">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">
<img src="https://storage.googleapis.com/davo-res-public/research/favicon.png" alt="" width="35" height="35" class="rounded-circle d-inline-block">
<span class="ms-2">
Centro de conocimiento
</span>
</a>
<span class="navbar-text">
<a class="icon-link me-2" href="https://github.com/davo-res" target="_blank">
<img src="https://storage.googleapis.com/davo-res-public/research/images/github.svg" height="22" width="22" alt="GitHub">
</a>
<a class="icon-link me-2" href="https://www.linkedin.com/in/david-restrepo-zapata" target="_blank">
<img src="https://storage.googleapis.com/davo-res-public/research/images/linkedin.svg" height="22" width="22" alt="LinkedIn">
</a>
</span>
</div>
</nav>
<main class="container">
<div class="row">
<div class="col-12 col-md-12 mb-5">
<div class="jumbotron p-3 p-md-5 text-white rounded bg-dark jumbotrom-banner">
<div class="col-md-6 px-0">
<h1 class="display-4 font-italic">Centro de conocimiento</h1>
<p class="lead my-3">Aquí publico mi investigación centrada en el desarrollo de software. El objetivo es alcanzar altos estándares de optimización y rendimiento en todos los aspectos del ciclo de vida del desarrollo de software.</p>
<p class="lead mb-0"><a href="https://github.com/davo-res/research" target="_blank" class="text-white font-weight-bold">Ver en GitHub</a></p>
</div>
</div>
<h3 class="mt-3 mb-3">Publicaciones sugeridas</h3>
<div class="row mb-2">
<div class="col-md-4">
<div class="card mb-3">
<img src="https://storage.googleapis.com/davo-res-public/research/images/cloud-efficiency -load-model-banner.png" class="card-img-top img-cover">
<div class="card-body">
<strong class="d-inline-block text-primary">Cloud</strong>
<h3 class="card-title">
<a href="./cloud-efficiency -load-model/index.html" class="text-dark">Modelo de Carga Eficiente en la Nube</a>
</h3>
<p class="card-text mb-2">Este es un modelo matemático que ayuda a determinar cuál es la cantidad óptima de instancias o servidores.</p>
<a href="./cloud-efficiency -load-model/index.html">Ir al artículo</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-3">
<img src="https://storage.googleapis.com/davo-res-public/research/images/improve-skills-snake-game-banner.png" class="card-img-top img-cover">
<div class="card-body">
<strong class="d-inline-block text-success">Lógica</strong>
<h3 class="card-title">
<a href="./improve-skills-snake-game/index.html" class="text-dark">Mejora las skills de programación</a>
</h3>
<p class="card-text mb-2">¿Quieres mejorar tu lógica de programación sin depender de frameworks?</p>
<a href="./improve-skills-snake-game/index.html">Ir al artículo</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<nav class="navbar mt-5 nav-background">
<div class="container-fluid">
<span class="mb-0">© 2025 David Restrepo. Contenido libre de usar con atribución.</span>
<span class="navbar-text">
<a class="icon-link me-2" href="https://github.com/davo-res" target="_blank">
<img src="https://storage.googleapis.com/davo-res-public/research/images/github.svg" height="22" width="22" alt="GitHub">
</a>
<a class="icon-link me-2" href="https://www.linkedin.com/in/david-restrepo-zapata" target="_blank">
<img src="https://storage.googleapis.com/davo-res-public/research/images/linkedin.svg" height="22" width="22" alt="LinkedIn">
</a>
</span>
</div>
</nav>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5KE59NYXTQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5KE59NYXTQ');
</script>
</body>
</html>