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

Exercise github profile, week 1, class 2, has been added. #842

Closed
wants to merge 3 commits into from
Closed
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
27 changes: 27 additions & 0 deletions github-profiles/muxanz-5287/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## Hi, I'm Samuel Florez 👋 | [GitHub Profile](https://github.com/muxanz)

Web developer in progress 🌱, geek, passionate about learning new technologies 💻 , with basic knowledge in web development with HTML, CSS and JavaScript. Always focused on continuous learning 📚 🤓 .

### Linux commands 🐧 

| Command | Description |
| ------ | ------ |
| date | Show system date |
| whoami | Show your username |
| pwd | Show current directory |
| cd | Change directory |
| ls | List files |
| grep | Search for pattern in flies |
| cp | Copy files |
| mv | Move files |
| rm | Delete files |

### Alias commands ✨ 

| Alias | Description |
| ------ | ------ |
| lll | List files with option -lha |
| cl | Clear screen |
| free | See memory used |

---
94 changes: 94 additions & 0 deletions github-profiles/muxanz-5287/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<!DOCTYPE html>
<html lang="en">

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

<body>
<h1>Hi, I'm Samuel Florez 👋 | <a href="https://github.com/muxanz">Github Profile</a>🔗</h1>
<hr>
<p>Web developer in progress 🌱, geek, passionate about learning new technologies 💻 , with basic knowledge in web
development with HTML, CSS and JavaScript. Always focused on continuous learning 📚 🤓 .</p>

<h2>Linux commands 🐧</h2>
<table class="content-table">
<thead>
<tr>
<td>Command</td>
<td>Description</td>
</tr>
</thead>
<tbody>
<tr>
<td>date</td>
<td>Show system date</td>
</tr>
<tr>
<td>whoami</td>
<td>Show your username</td>
</tr>
<tr>
<td>pwd</td>
<td>Show current directory</td>
</tr>
<tr>
<td>cd</td>
<td>Change directory</td>
</tr>
<tr>
<td>ls</td>
<td>List files</td>
</tr>
<tr>
<td>grep</td>
<td>Search for pattern in flies</td>
</tr>
<tr>
<td>cp</td>
<td>Copy files</td>
</tr>
<tr>
<td>mv</td>
<td>Move files</td>
</tr>
<tr>
<td>rm</td>
<td>Delete files</td>
</tr>
</tbody>
</table>

<h2>Alias commands ✨ </h2>
<table class="content-table">
<thead>
<tr>
<td>Alias</td>
<td>Description</td>
</tr>
</thead>
<tbody>
<tr>
<td>lll</td>
<td>List files with option -lha</td>
</tr>
<tr>
<td>cl</td>
<td>Clear screen</td>
</tr>
<tr>
<td>free</td>
<td>See memory used</td>
</tr>
</tbody>
</table>
<hr>
<footer>
<p>Eager to continue learning 💪📚 | 2024 </p>
</footer>
</body>

</html>
51 changes: 51 additions & 0 deletions github-profiles/muxanz-5287/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
html {
box-sizing: border-box;
font-family: 'Cairo', sans-serif;
font-size: 62.5%;
font-family: Arial, Helvetica, sans-serif;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
font-size: 1.6rem;
line-height: 2;
margin: 0 auto;
max-width: 90rem;
}
a {
text-decoration: none;
color: #009879;
}
.content-table {
border-collapse: collapse;
margin: 2.5rem 0;
min-width: 40rem;
border-radius: .5rem .5rem 0 0;
overflow: hidden;
box-shadow: 0 0 2rem rgb(0, 0, 0, .15);
margin-bottom: 3rem;
}
.content-table thead tr {
background-color: #009879;
color: #fff;
text-align: center;
font-weight: bold;
}
.content-table td {
padding: 1.2rem 1.5rem;
text-align: center;
}
.content-table tbody tr {
border-bottom: 1px solid #ddd;
}
.content-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.content-table tbody tr:last-of-type {
border-bottom: 2px solid #009879;
}
footer {
text-align: center;
padding: 1rem 0;
}
Loading