-
Notifications
You must be signed in to change notification settings - Fork 642
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #825 from kjimenezr89/main
- Loading branch information
Showing
3 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |