Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add: agregando README.md, de la semana 1 del Bootcamp #834

Merged
merged 4 commits into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions github-profiles/valitogt-1328/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
![Logo personal](logo.jpeg)



# Hola, Soy **Oswaldo Alonzo** 👋
Me encuentro estudiando el Bootcamp de Desarrollo Frontend en [Undefined Academy](https://undefined.academy/).

Mi objetivo es poder aprender, entender y desarrollar mis habilidades para entregar, crear y modificar código de alta calidad que sea legible, mantenible y escalable.

## Habilidades 🛠️
- HTML/CSS
- Git
- Javascript
- React ( Actualmente en aprendizaje)

>

**Comandos de Terminal** 💥

| **Comando** | **Descripción** |
|-------------|----------------|
| ls | Lista los archivos en el directorio actual |
| cd | Permite navegar entre carpetas |
| rm | Permite eliminar una carpeta dado un camino |
| mkdir | Crea una nueva carpeta dado un nombre para esa carpeta |
| touch | Crea un nuevo archivo dado un camino y/o nombre |

>

**Comandos Alias** 👽️

| Alias | Descripción |
|-------|----------------|
| cl | clear |
| npmd | npm run dev |
| npms | npm start |

>

## Contáctame 📫

[Github](https://github.com/Valitogt79) 🖥️

[LinkedIn](https://www.linkedin.com/in/oswaldoalonzo/) 💼

¡Gracias por visitar mi perfil de [GitHub](https://github.com/Valitogt79)! 😊
108 changes: 108 additions & 0 deletions github-profiles/valitogt-1328/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Github Perfil</title>
<link rel="stylesheet" href="styles.css">
</head>

<body>
<header>
<img src="/github-profiles/valitogt-1328/logo.jpeg" width="100%" alt="Banner personal">
<h1>Hola, Soy </strong>Oswaldo Alonzo</strong> 👋</h1>
</header>
<p>Me encuentro estudiando el Bootcamp de Desarrollo Frontend en <a href="https://undefined.academy/">Undefined
Academy.</a></p>
<p>Mi objetivo es poder aprender, entender y desarrollar mis habilidades para entregar, crear y modificar código de
alta calidad que sea legible, mantenible y escalable.</p>

<h2>Habilidades 🛠️</h2>
<ul>
<li>HTML/CSS</li>
<li>Git</li>
<li>Javascript</li>
<li>React ( Actualmente en aprendizaje)</li>
</ul>
<hr />

<H3><strong>Comandos de Terminal</strong> 💥 </H3>
<table>
<tr>
<th>Comando</th>
<th>Descripción</th>
</tr>


<tr>
<td>ls</td>
<td>Lista los archivos en el directorio actual </td>
</tr>

<tr>
<td>cd</td>
<td>Permite navegar entre carpetas </td>
</tr>

<tr>
<td>rm</td>
<td>Crea una nueva carpeta dado un nombre para esa carpeta</td>
</tr>

<tr>
<td>mkdir</td>
<td>Crea una nueva carpeta dado un nombre para esa carpeta </td>
</tr>

<tr>
<td>touch</td>
<td>Crea un nuevo archivo dado un camino y/o nombre</td>
</tr>
</table>
<hr>

<h3><strong>Alias en terminal</strong> 👽️ </h3>

<table>
<tr>
<th>Alias </th>
<th>Descripción</th>
</tr>

<tr>
<td>alias actualizar="sudo apt update && sudo apt dist-upgrade -y</td>
<td>actualizar el sistema operativo simplemente usando el comando <em>actualizar</em></td>
</tr>
<tr>
<td>alias rm="rm -i"</td>
<td>Para borrar archivos con más seguridad desde la terminal.</td>
</tr>

<tr>
<td>alias cp="cp -i"</td>
<td>Antes de sobreescribir un fichero nos pedirá confirmación.</td>
</tr>

<tr>
<td>alias mkdircd='function _mkdircd(){ mkdir -p "$1"; cd "$1"; };_mkdircd'</td>
<td>Crear un directorio y acceder directamente al directorio creado.</td>
</tr>
<tr>
<td>alias gh="history | grep"</td>
<td>Encontrar un comando en el historial de la terminal mediante el comando gh</td>
</tr>

</table>

<hr>

<h3>Contáctame 📫</h3>
<p><a href="https://github.com/Valitogt79">Github </a> 🖥️</p>
<p><a href="https://www.linkedin.com/in/oswaldoalonzo/">LinkedIn</a> 💼</p>

<p>¡Gracias por visitar mi perfil de <a href="https://github.com/Valitogt79">GitHub</a>! y darme tu feedback 😊</p>

</body>

</html>
Binary file added github-profiles/valitogt-1328/logo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
75 changes: 75 additions & 0 deletions github-profiles/valitogt-1328/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
@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;
}

header h1 {
font-size: 2.5em;
font-weight: 300;
}

header a {
border: 1px solid #e81c4f;
border-radius: 290486px;
color: white;
font-size: 0.6em;
letter-spacing: 0.2em;
padding: 1em 2em;
text-transform: uppercase;
text-decoration: none;
transition: none 200ms ease-out;
transition-property: color, background;
}

header a:hover {
background: #e81c4f;
color: white;
}


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

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

a {
color: #e81c4f;
}

table {
width: 100%;
}
}
table, th, tr, td {
border: 1px solid rgb(184, 184, 255);
border-collapse: collapse;
}

th {
font-weight: 600;
background: rgb(184, 184, 255);
color: rgb(43, 110, 101);
}

th, td {
padding: 4px 8px;
}

td:first-child {
width:18em;
}

td:last-child {
width: 22em;
}
Loading