67 lines
2.3 KiB
HTML
67 lines
2.3 KiB
HTML
<!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>
|
|
body {
|
|
margin: 0 auto;
|
|
width: fit-content;
|
|
max-width: 100ex;
|
|
border-radius: 4px;
|
|
text-align: left;
|
|
padding: 0 1ex;
|
|
}
|
|
.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(100vw - 4ex);
|
|
}
|
|
.links section h2 {
|
|
margin-top: 0;
|
|
}
|
|
h2 a {
|
|
color: black;
|
|
}
|
|
a {
|
|
color: #00e;
|
|
}
|
|
</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). I also develop some projects, and collaborate on others.</p>
|
|
|
|
</div>
|
|
<div class="links">
|
|
<section>
|
|
<h2><a href="/blog">Blog</a></h2>
|
|
Latest post: <a href="https://codigoparallevar.com/blog/2019/secure-websockets-esp8266-arduino/">[2019] Secure Websockets with ESP8266 and Arduino</a>
|
|
</section>
|
|
<section>
|
|
<h2>Collaborations</h2>
|
|
Latest post in <a href="https://hackliza.gal">Hackliza</a>: <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>
|
|
</section>
|
|
<section>
|
|
<h2>Projects</h2>
|
|
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>.
|
|
</section>
|
|
<section>
|
|
<h2>Find me</h2>
|
|
<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>
|
|
</section>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|