new-codigoparallevar/static/homepage.html
2024-07-21 19:54:23 +02:00

149 lines
5.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Código para llevar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: white;
font-family: sans-serif;
margin: 0 auto;
width: fit-content;
max-width: 100ex;
padding: 0 1ex;
color: black;
}
.header h1 {
text-align: center;
}
.links section {
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%;
max-width: calc(100% - 2ex);
}
.links section h2 {
margin-top: 0;
}
.links p {
margin: 0;
}
h2 a, a h2 {
color: black;
text-decoration: underline;
}
a {
color: #00e;
}
#social a:last-child {
border: none;
}
#social a {
padding-right: 0.5ex;
border-right: 1px solid #000;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #1d1f21;
color: #fafafe;
}
h2 a, a h2 {
color: #fafafe;
}
a {
color: #00fdf2;
}
#social a {
border-color: #fff;
}
.links section {
background-color: #262628;
}
}
</style>
</head>
<body>
<div class="header">
<h1>Código para llevar</h1>
<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>
</div>
<div class="links">
<a href="/notes">
<section>
<h2>Notes</h2>
<p>Some publicly-visible notes from a sort of knowledge graph that I use as information dump.</p>
</section>
</a>
<section>
<h2><a href="/blog">Blog</a></h2>
<p>
Latest posts:
<ul>
<li><a href="https://codigoparallevar.com/blog/2023/programmatic-access-to-gnucash-using-python/">[2023] A sloppy guide to GnuCash's Python bindings</a></li>
<li><a href="https://codigoparallevar.com/blog/2022/detecting-non-halting-programs/">[2022] Detecting non halting programs</a></li>
<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>
</p>
</section>
<section>
<h2>Collaborations</h2>
<p>
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>
</p>
</section>
<section>
<h2>Talks / Slides</h2>
<p>
<ul>
<li>
Malleable Software
(<a href="/slides/hackliza2024/software-maleable/software-maleable.odp">galician, </a>
for <a href="https://hackliza.gal">Hackliza</a>
<a href="/slides/hackliza2024/software-maleable/software-maleable.pdf">[PDF]</a>
<a href="/slides/hackliza2024/software-maleable/software-maleable.odp">[ODP]</a>)
(<a href="/slides/eslibre2024/software-maleable.odp">spanish,</a>
for <a href="https://eslib.re/2024/">esLibre 2024</a>
<a href="/slides/eslibre2024/software-maleable.pdf">[PDF]</a>
<a href="/slides/eslibre2024/software-maleable.odp">[ODP]</a>).
</li>
</ul>
</p>
</section>
<!-- section>
<h2>Projects</h2>
<p>
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>.
</p>
</section -->
<section id="social">
<h2>Find me</h2>
<p>
<a href="https://social.codigoparallevar.com/@kenkeiras">ActivityPub</a>
<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>
</section>
</div>
</body>
</html>