website

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

software.html (2808B)


      1 <!DOCTYPE HTML>
      2 <html lan=en>
      3   <head>
      4     <title>Software I have written or use | 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 <h1>Software I have written or use</h1>
     45 
     46 <p>Here are some of the software I have written, most of them can be found on my
     47 git repository, some of them are on <a href="https://github.com/cemkeylan">GitHub</a>.</p>
     48 
     49 <ul>
     50 <li><a href="https://carbslinux.org">Carbs Linux</a> a Linux distribution aimed for simplicity.</li>
     51 <li><a href="https://fossil.carbslinux.org/cpt">Carbs Packaging Tools</a> a portable package management toolchain written with
     52 extensibility in mind.</li>
     53 <li><a href="/sysmgr">sysmgr</a> a simplistic service supervisor inspired from runit.</li>
     54 <li><a href="https://git.ckyln.com/shinit">shinit</a> a POSIX sh init daemon with support for acting upon signals.</li>
     55 <li><a href="https://git.ckyln.com/sxss">sxss</a> Simple X ScreenSaver written in C99.</li>
     56 <li><a href="https://github.com/cemkeylan/mu-wizard">mu-wizard</a> Email configuration wizard for setting up mu4e on Emacs.</li>
     57 </ul>
     58 
     59 
     60 <hr />
     61 
     62 <p>On a daily basis, I currently use the following software:</p>
     63 
     64 <ul>
     65 <li>Emacs as my editor</li>
     66 <li>Fossil (preferred) and Git for version control</li>
     67 <li>My fork of <a href="https://git.carbslinux.org/users/merakor/lariza">lariza</a> for browsing the web</li>
     68 <li>foot (Wayland terminal)</li>
     69 <li>sway (Wayland compositor)</li>
     70 <li>mpd for listening to music</li>
     71 <li><a href="https://yash.osdn.jp">yash</a> as my login shell</li>
     72 </ul>
     73 
     74     </p>
     75     <a href="/software.txt">This page in plain-text</a>
     76     <hr>
     77     <p class=footer>Copyright &copy; 2019-2021 Cem Keylan</p>
     78   </body>
     79 </html>