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

Mi perfil de GitHub #800

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
31 changes: 31 additions & 0 deletions github-profiles/pandaman-1897/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
https://github.com/jhuamancc
# Hello, I'm Jorge Huaman,
I help developers to improve their skills while creating quality products.
I'm a Full-stack Java Developer from Peru.


## Skills

* Java
* Javascript
* Angular

## Shell Commands
Shell commands are instructions entered and executed in a command-line interface, allowing users to interact with the operating system. These commands perform various tasks such as file manipulation, program execution, system configuration, and more.

| Command | Description |
| ------ | ------ |
| `ls` | List files and directories in the current directory. |
| `cp` | Copy files or directories from one location to another. |
| `mv` | Move or rename files and directories. |
| `rm` | Remove (delete) files or directories. |
| `cat` | Display the contents of a file. |

## Command Aliases

Command aliases are short names or abbreviations assigned to longer or more complex commands. They provide a convenient way to execute frequently used or lengthy commands with shorter and easier-to-remember names. Aliases enhance command-line efficiency by reducing the amount of typing required for common tasks.

| Alias | Command | Description |
| ------ | ------ |------ |
| `cafe` | cat /dev/urandom \| hexdump \| grep "ca fe" | Searches for "ca fe" in randomly generated data from /dev/urandom. |
| `cl` | clear | Clears the terminal screen. |git
89 changes: 89 additions & 0 deletions github-profiles/pandaman-1897/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="en">

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

<body>

<h1>Hello, I'm Jorge Huaman</h1>
<p>I help developers to improve their skills while creating quality products. I'm a Full-stack Java Developer from
Peru.</p>

<h2>Skills</h2>
<ul>
<li>Java</li>
<li>Javascript</li>
<li>Angular</li>
</ul>

<h2>Shell Commands</h2>
<p>Shell commands are instructions entered and executed in a command-line interface, allowing users to interact with
the operating system. These commands perform various tasks such as file manipulation, program execution, system
configuration, and more.</p>

<table>
<thead>
<tr>
<th>Command</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>ls</code></td>
<td>List files and directories in the current directory.</td>
</tr>
<tr>
<td><code>cp</code></td>
<td>Copy files or directories from one location to another.</td>
</tr>
<tr>
<td><code>mv</code></td>
<td>Move or rename files and directories.</td>
</tr>
<tr>
<td><code>rm</code></td>
<td>Remove (delete) files or directories.</td>
</tr>
<tr>
<td><code>cat</code></td>
<td>Display the contents of a file.</td>
</tr>
</tbody>
</table>

<h2>Command Aliases</h2>
<p>Command aliases are short names or abbreviations assigned to longer or more complex commands. They provide a
convenient way to execute frequently used or lengthy commands with shorter and easier-to-remember names. Aliases
enhance command-line efficiency by reducing the amount of typing required for common tasks.</p>

<table>
<thead>
<tr>
<th>Alias</th>
<th>Command</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>cafe</code></td>
<td><code>cat /dev/urandom | hexdump | grep "ca fe"</code></td>
<td>Searches for "ca fe" in randomly generated data from /dev/urandom.</td>
</tr>
<tr>
<td><code>cl</code></td>
<td><code>clear</code></td>
<td>Clears the terminal screen.</td>
</tr>
</tbody>
</table>

</body>

</html>
73 changes: 73 additions & 0 deletions github-profiles/pandaman-1897/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
body {
margin: 0 auto;
max-width: 50em;
}

body {
font-family: "Helvetica", "Arial", sans-serif;
}

body {
line-height: 1.5;
padding: 4em 1em;
}

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

body {
line-height: 1.5;
padding: 4em 1em;
}

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

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

code,
pre {
background: #eee;
}

code {
padding: 2px 4px;
vertical-align: text-bottom;
}

pre {
padding: 1em;
}

a {
color: #e81c4f;
}

body {
color: #566b78;
}

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

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

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

body {
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
Loading