website

My personal website
git clone git://git.ckyln.com/website
Log | Files | Refs

blog.html (2277B)


      1 <!DOCTYPE HTML>
      2 <html lan=en>
      3   <head>
      4     <title>Blog Index | Cem's Website</title>
      5     <meta charset="utf-8">
      6     <meta name="Description" content="Cem Keylan's Website">
      7     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
      8     <style>
      9       html {font-family:monospace;font-size:16px;color:#282a36;}
     10       body {
     11 	  width: 90%;
     12 	  max-width: 1050px;
     13 	  margin-left: auto;
     14 	  margin-right: auto;
     15 	  margin-top: 20px;
     16 	  overflow: none;
     17           overflow-y: scroll;
     18 	  padding-right: 10px;
     19 	  padding-left: 10px;
     20       }
     21       a{text-decoration:none;font-weight:bold;color:#282a36;}
     22       a:hover{text-decoration:underline;}
     23       @media (prefers-color-scheme: dark) {
     24           html {color: white;background:#282a36;}
     25           a{color:white;}
     26       }
     27     </style>
     28     <link rel="stylesheet" href="/static/syntax.css">
     29     <script src="/static/highlight.pack.js"></script>
     30     <script>hljs.initHighlightingOnLoad();</script>
     31   </head>
     32   <body>
     33     <div class="header">
     34       <nav>
     35         <a href='/'>index</a> |
     36         <a href="/software.html">software</a> |
     37         <a href="/blog.html">blog</a> |
     38         <a href="/contact.html">contact</a> |
     39         <a href="/sysmgr">sysmgr</a> |
     40       </nav>
     41     </div>
     42     <hr>
     43     <p>
     44 <h2>Blog Index</h2>
     45 
     46 <ul>
     47 <li>Oct 12 2021 - <a href="/blog/20211012-execline.html">My thoughts on execline</a></li>
     48 <li>Oct 02 2020 - <a href="/blog/20201002-reimplementing-sysmgr-in-c.html">Reimplementing <code>sysmgr</code> in C</a></li>
     49 <li>Sep 08 2020 - <a href="/blog/20200908-trust-in-distributed-environments.html">Trust in Distributed Environments</a></li>
     50 <li>Aug 28 2020 - <a href="/blog/20200828-wpa-add-script.html">wpa_add script</a></li>
     51 <li>Aug 28 2020 - <a href="/blog/20200828-static-linking.html">Static linking</a></li>
     52 <li>Aug 12 2020 - <a href="/blog/20200812-starting-x-without-xinit.html">Starting X without Xinit</a></li>
     53 <li>May 08 2020 - <a href="/blog/20200508-why-i-dislike-arch-and-gentoo.html">Why I dislike Arch and Gentoo</a></li>
     54 <li>Apr 13 2020 - <a href="/blog/20200413-editor-wizardry.html">Editor Wizardry</a></li>
     55 </ul>
     56 
     57     </p>
     58     <a href="/blog.txt">This page in plain-text</a>
     59     <hr>
     60     <p class=footer>Copyright &copy; 2019-2021 Cem Keylan</p>
     61   </body>
     62 </html>