49 lines
2.2 KiB
HTML
49 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="es">
|
||
<head>
|
||
<title>Daniel Cortés</title>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
<meta name="viewport" content="width-device-width, initial-scale=1">
|
||
<meta name="author" content="Daniel Cortés">
|
||
<link rel="stylesheet" href="/assets/style.css" type="text/css">
|
||
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1>Random Stuff</h1>
|
||
<p>Por aqui dejare links a cosas random que son interesantes, o me gustan, o simplemente quiero guardar</p>
|
||
<h2>Preguntas / Respuestas en StackOverflow</h2>
|
||
<ul>
|
||
<li><a href="https://stackoverflow.com/questions/7745609/sql-select-only-rows-with-max-value-on-a-column">SQL select only rows with max value on a column</a></li>
|
||
<li><a href="https://stackoverflow.com/questions/11919708/set-of-unambiguous-looking-letters-numbers-for-user-input">Set of unambiguous looking letters & numbers for user input</a></li>
|
||
</ul>
|
||
<h2>Blog posts de otros</h2>
|
||
<ul>
|
||
<li><a href="https://blog.cerebralab.com/Bimodal_programming_%E2%80%93_why_design_patterns_fail">Bimodal programming – why design patterns fail</a></li>
|
||
<li><a href="https://www.robinsloan.com/notes/home-cooked-app/">An app can be a home-cooked meal</a></li>
|
||
<li><a href="https://datagubbe.se/decusab/">The Decline of Usability</a></li>
|
||
<li><a href="https://baekdal.com/thoughts/the-original-cookie-specification-from-1997-was-gdpr-compliant/">The Original Cookie specification from 1997 was GDPR compliant</a></li>
|
||
<li><a href="https://tonsky.me/blog/syncthing/">Computers as I used to love them</a></li>
|
||
</ul>
|
||
<h2>Recursos</h2>
|
||
<ul>
|
||
<li><a href="https://wcodes.org/">Wcode - Usar palabras para transmitir codigos de uso humano</a></li>
|
||
</ul>
|
||
<h2>Videos</h2>
|
||
<ul>
|
||
<li><a href="https://www.youtube.com/watch?v=o9pEzgHorH0">Jack Diederich - Stop Writing Classes</a></li>
|
||
</ul>
|
||
</div>
|
||
<script>
|
||
function makeImagesClickeable() {
|
||
document.querySelectorAll("img").forEach(img => {
|
||
img.addEventListener("click", e => window.open(e.target.src))
|
||
});
|
||
}
|
||
|
||
window.addEventListener('DOMContentLoaded', (event) => {
|
||
makeImagesClickeable();
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |