Skip to content

Commit

Permalink
Merge pull request #825 from kjimenezr89/main
Browse files Browse the repository at this point in the history
  • Loading branch information
glrodasz authored Aug 4, 2024
2 parents 593793e + 44e306b commit c56e83b
Show file tree
Hide file tree
Showing 3 changed files with 129 additions and 0 deletions.
18 changes: 18 additions & 0 deletions github-profiles/kjimenezr89-3718/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# I'm Kevin Jimenez

## Systems Engineer from Perú
I work as a **Coordinator** in a Digital Factory on my country. I like to program in my free times, my favorite techonologies are Containers, Javascript, Java, MongoDB and MariaDB, but I would like to learn about Go, Python, Kubernets, Devops, DevSecops and IA.

I am currently pursuing a master's degree in Direction of Technologies Information in ESAN University, it's difficult but fun and very interesting.

## The 5 commands that I use the most
| Command | Description |
|---------|---------------------------|
| ls | List current directory |
| cd | Change directory |
| clear | Clean terminal |
| mkdir | Create a directory |
| sudo | Run the command as admin. |

## GitHub Profile
https://github.com/kjimenezr89
69 changes: 69 additions & 0 deletions github-profiles/kjimenezr89-3718/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@

@import 'https://fonts.googleapis.com/css?family=Roboto:300,400,500';

body {
margin: 0 auto;
max-width: 50em;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
line-height: 1.5;
padding: 4em 1em;
color: #566b78;
}

main {
width: 600px;
}

h2 {
margin-top: 1em;
padding-top: 1em;
}

h1,
h2,
strong {
color: #333;
}

div {
padding: 20px;
border: 1px solid tomato;
}

.column {
display: inline-block;
width: calc(33.33% - 40px - 2px);
}

code,
pre {
background: #f5f7f9;
border-bottom: 1px solid #d8dee9;
color: #a7adba;
}

pre {
border-left: 2px solid #69c;
}

a {
color: #e81c4f;
}

header {
background-color: #263d36;
background-image: url("cat.jpg");
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
line-height: 1.2;
padding: 10vw 2em;
text-align: center;
}

header img {
display: inline-block;
height: 120px;
vertical-align: top;
width: 120px;
}
42 changes: 42 additions & 0 deletions github-profiles/kjimenezr89-3718/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>Esto es una página web</title>

<link rel="stylesheet" href="/index.css" />
</head>

<body>
<!-- Esto es un comentario -->
<h1>I'm Kevin Jimenez</h1>
<h2>Systems Engineer from Perú</h2>
<hr>
<p>I work as a <strong>Coordinator</strong> in a Digital Factory on my country.
I like to program in my free times, my favorite techonologies are
Containers, Javascript, Java, MongoDB and MariaDB, but I would like to learn about
Go, Python, Kubernets, Devops, DevSecops and IA.</p>
<p>I am currently pursuing a master's degree in Direction of Technologies Information
in ESAN University, it's difficult but fun and very interesting.</p>

<h2>El Bootcamp que estoy cursando</h2>
<h3>Semana 1</h3>
<p>Configuración del ambiente de desarrollo (Prework)</p>
<ol>
<li>Instalando Ubuntu en Windows</li>
<li>Instalación de Git</li>
<li>Configuración de llaves SSH</li>
<li>Creando una cuenta de GitHub</li>
<li>Instalación de Node.js y Yarn</li>
<li>Primeros pasos con VS Code</li>
</ol>

<hr>
<a href="https://github.com/kjimenezr89" target="_blank">Perfil de GitHub</a>
<hr>
<a href="about.html">Acerca de Esta página</a>

</body>

</html>

0 comments on commit c56e83b

Please sign in to comment.