new-codigoparallevar/static/homepage.html

120 lines
4.0 KiB
HTML
Raw Normal View History

2021-11-01 17:11:22 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Código para llevar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
2022-07-27 21:52:01 +00:00
body {
font-family: sans-serif;
2022-01-06 21:32:49 +00:00
margin: 0 auto;
width: fit-content;
max-width: 100ex;
padding: 0 1ex;
2022-07-27 21:52:01 +00:00
}
.header h1 {
text-align: center;
}
2021-11-01 17:11:22 +00:00
.links section {
2022-01-07 23:54:11 +00:00
margin-top: 1em;
display: inline-block;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
padding: 1ex;
border-radius: 4px;
width: 100%;
2022-01-09 00:04:05 +00:00
max-width: calc(100% - 2ex);
2022-01-07 23:54:11 +00:00
}
.links section h2 {
margin-top: 0;
2021-11-01 17:11:22 +00:00
}
2022-01-09 00:12:20 +00:00
.links p {
margin: 0;
}
2021-11-01 17:11:22 +00:00
h2 a {
color: black;
}
2022-01-08 00:02:21 +00:00
a {
color: #00e;
}
2022-01-08 00:07:35 +00:00
#social a:last-child {
border: none;
}
#social a {
padding-right: 0.5ex;
border-right: 1px solid #000;
}
2022-01-09 00:04:05 +00:00
@media (prefers-color-scheme: dark) {
html {
background-color: #0f110e;
color: #fafafe;
}
h2 a {
color: #fafafe;
}
a {
2022-10-16 22:10:40 +00:00
color: #00fdf2;
2022-01-09 00:04:05 +00:00
}
#social a {
border-color: #fff;
}
.links section {
background-color: #262826;
}
}
2021-11-01 17:11:22 +00:00
</style>
</head>
<body>
<div class="header">
<h1>Código para llevar</h1>
2022-02-26 13:35:47 +00:00
<p>This is kenkeiras' homepage. You can find a <a href="/blog">blog</a> (mainly about coding and related topics). I also develop some projects, and collaborate on others.</p>
2021-11-01 17:11:22 +00:00
</div>
<div class="links">
<section>
<h2><a href="/blog">Blog</a></h2>
2022-01-09 00:12:20 +00:00
<p>
2022-02-26 13:35:47 +00:00
Latest posts:
<ul>
2022-09-17 19:14:49 +00:00
<li><a href="https://codigoparallevar.com/blog/2022/detecting-non-halting-programs/">[2022] Detecting non halting programs</a></li>
2022-02-26 13:35:47 +00:00
<li><a href="https://codigoparallevar.com/blog/2022/get-process-progress-reading-file/">[2022] Get process's progress when reading a file</a></li>
<li><a href="https://codigoparallevar.com/blog/2022/a-simple-status-indicator/">[2022] A simple status indicator</a></li>
</ul>
2022-01-09 00:12:20 +00:00
</p>
2021-11-01 17:11:22 +00:00
</section>
<section>
<h2>Collaborations</h2>
2022-01-09 00:12:20 +00:00
<p>
2022-07-14 22:02:15 +00:00
Latest posts in <a href="https://hackliza.gal">Hackliza</a>:
<ul>
<li>
<a href="https://hackliza.gal/en/posts/python-visual-profiling/">Visual profiling in Python (english)</a>
<a href="https://hackliza.gal/posts/python-visual-profiling/">(galician)</a>
</li>
<li>
<a href="https://hackliza.gal/en/posts/quick_math_on_terminal/">Quick math on the terminal (english)</a>
<a href="https://hackliza.gal/posts/contas_rapidas_no_terminal/">(galician)</a>
</li>
</ul>
2022-01-09 00:12:20 +00:00
</p>
2021-11-01 17:11:22 +00:00
</section>
<section>
<h2>Projects</h2>
2022-01-09 00:12:20 +00:00
<p>
2022-07-14 22:02:15 +00:00
My most stable project is <a href="https://programaker.com">PrograMaker</a>.
Other work-in-progress is in <a href="https://github.com/kenkeiras">GitHub</a>.
2022-01-09 00:12:20 +00:00
</p>
2021-11-01 17:11:22 +00:00
</section>
2022-01-08 00:07:35 +00:00
<section id="social">
2021-11-01 22:12:17 +00:00
<h2>Find me</h2>
2022-01-09 00:12:20 +00:00
<p>
<a href="https://github.com/kenkeiras">GitHub</a>
<a href="https://gitlab.com/kenkeiras">GitLab</a>
<a href="https://programaker.com/users/kenkeiras">PrograMaker</a>
</p>
2021-11-01 22:12:17 +00:00
</section>
2021-11-01 17:11:22 +00:00
2021-11-01 22:12:17 +00:00
</div>
2021-11-01 17:11:22 +00:00
</body>
</html>