diff options
| author | mjkwiatkowski <mati.rewa@gmail.com> | 2026-02-11 13:18:45 +0100 |
|---|---|---|
| committer | mjkwiatkowski <mati.rewa@gmail.com> | 2026-02-11 13:18:45 +0100 |
| commit | c7f00446dcb0c56d0db38284977f4273d85e396c (patch) | |
| tree | c482304fbb51921dfa7d942f051650064ec501c2 /public/articles/index.html | |
| parent | ff7f65e76e0b893f4e8f5049a4f9523b9c36d0ad (diff) | |
fix: trying to fix photos
Diffstat (limited to 'public/articles/index.html')
| -rw-r--r-- | public/articles/index.html | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/public/articles/index.html b/public/articles/index.html new file mode 100644 index 0000000..9e15ab1 --- /dev/null +++ b/public/articles/index.html @@ -0,0 +1,117 @@ +<!DOCTYPE html> +<html lang="en-us"> +<head> + <meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png"> +<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png"> +<link rel="stylesheet" href="/css/style.css" /> +<link rel="stylesheet" href="/css/fonts.css" /> + +</head> +<body> + <header> + <img width="100em" height="100em" src="/images/logo.jpg" alt="mjkw logo"> +<div> + <h1>mjkw.pl</h1> + <ul> + <li> + <a href="/">home</a> + </li> + <li> + <a href="/articles">articles</a> + </li> + <li> + <a href="https://git.denounce.ai/">git.denounce.ai</a> + </li> + <li> + <a href="https://ohmyghost.nl">ohmyghost.nl</a> + </li> + <li> + <a href="https://atlarge-research.com/mkwiatkowski/">research</a> + </li> + <li> + <a href="/contact">contact me</a> + </li> + </ul> +</div> + + </header> + + <main> + +<div class="list"> + <h2>Articles</h2> + <p>This is a list of all articles up to date.</p> + + <ul> + + + + <li> + <a href="/articles/nature-of-technology/">Review of The Nature of Technology by W. Brian Arthur</a> + <span class="date"> Published on 2026/02/11</span> + <span class="summary"> </span> + </li> + + <li> + <a href="/articles/poster-fair/">HP Poster Fair 2024/2025</a> + <span class="date"> Published on 2026/02/08</span> + <span class="summary"> This is a short upload of the photos so that they do not dissapear into oblivion. </span> + </li> + + <li> + <a href="/articles/critical-cs/">Comment for The New History of Modern Computing by P. Ceruzzi and T. Haigh</a> + <span class="date"> Published on 2026/01/31</span> + <span class="summary"> A short digression on mindlessly following trends. </span> + </li> + + <li> + <a href="/articles/mythical-man-month/">Review of The Mythical Man-Month by Frederick P. Brooks</a> + <span class="date"> Published on 2025/12/22</span> + <span class="summary"> 8/10 book, worth recommending </span> + </li> + + <li> + <a href="/articles/dijkstra-knuth/">On the old-school approach to programming</a> + <span class="date"> Published on 2025/12/14</span> + <span class="summary"> After having read the EWD190 I decided to relate to it a bit. </span> + </li> + + <li> + <a href="/articles/lecture-photos/">Computer Organization and Computer Networks</a> + <span class="date"> Published on 2025/10/09</span> + <span class="summary"> </span> + </li> + + <li> + <a href="/articles/denounce-ai/">Why using AI to solve your homework is a bad idea</a> + <span class="date"> Published on 2025/09/12</span> + <span class="summary"> Using AI to solve your homework hurts both you and your colleagues. Here is why. </span> + </li> + + <li> + <a href="/articles/useful-links/">Useful links</a> + <span class="date"> Published on 2025/07/26</span> + <span class="summary"> </span> + </li> + + <li> + <a href="/articles/good-cs-books/">Computer Science books every student should read</a> + <span class="date"> Published on 2025/07/25</span> + <span class="summary"> </span> + </li> + + </ul> +</div> + + </main> + + <footer> + +© Copyright 2025-2026 Mateusz J. Kwiatkowski. All Rights Reserved. No part of this website may be used or reproduced in any manner to train artificial intelligence technologies or systems. + + + </footer> +</body> +</html> |
