all repos — site @ 661c71b94445d02bb456b1b8d41603f513834de9

source for my site, found at icyphox.sh

build/blog/2019-10-17/index.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
<!DOCTYPE html>
<html lang=en>
<link rel="stylesheet" href="/static/style.css" type="text/css">
<link rel="stylesheet" href="/static/syntax.css" type="text/css">
<link rel="shortcut icon" type="images/x-icon" href="/static/favicon.ico">
<meta name="description" content="Not weekly anymore, but was it ever?">
<meta name="viewport" content="initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content="#021012" name="theme-color">
<meta name="HandheldFriendly" content="true">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@icyphox">
<meta name="twitter:title" content="Status update">
<meta name="twitter:description" content="Not weekly anymore, but was it ever?">
<meta name="twitter:image" content="/static/icyphox.png">
<meta property="og:title" content="Status update">
<meta property="og:type" content="website">
<meta property="og:description" content="Not weekly anymore, but was it ever?">
<meta property="og:url" content="https://icyphox.sh">
<meta property="og:image" content="/static/icyphox.png">
<html>
  <title>
    Status update
  </title>
<div class="container-text">
  <header class="header">
    
        <a href="/">home</a>
        <a href="/blog">blog</a>
        <a href="/reading">reading</a>
        <a href="https://twitter.com/icyphox">twitter</a>
        <a href="/about">about</a>

  </header>
<body> 
   <div class="content">
    <div align="left">
      <code>2019-10-16</code>
      <h1>Status update</h1>
      <h2>Not weekly anymore, but was it ever?</h2>
      <p>I&#8217;ve decided to drop the &#8220;Weekly&#8221; part of the status update posts, since
they were never weekly and&#8212;let&#8217;s be honest&#8212;they aren&#8217;t going to be.
These posts are, henceforth, just &#8220;Status updates&#8221;. The date range can
be inferred from the post date.</p>

<p>That said, here&#8217;s what I&#8217;ve been up to!</p>

<h3 id="void-linux">Void Linux</h3>

<p>Yes, I decided to ditch Alpine in favor of Void. Alpine was great,
really. The very comfy <code>apk</code>, ultra mnml system&#8230; but having to
maintain a chroot for my glibc needs was getting way too painful. And
the package updates are so slow! Heck, they&#8217;re still on kernel 4.xx on
their supposed &#8220;bleeding&#8221; <code>edge</code> repo.</p>

<p>So yes, Void Linux it is. Still a very clean system. I&#8217;m loving it.
I also undervolted my system using <a href="https://github.com/georgewhewell/undervolt"><code>undervolt</code></a>
(-95 mV). Can&#8217;t say for sure if there&#8217;s a noticeable difference in
battery life though. I&#8217;ll see if I can run some tests.</p>

<p>This <em>should</em> be the end of my distro hopping. Hopefully.</p>

<h3 id="pycon">PyCon</h3>

<p>Yeah yeah, enough already. Read <a href="/blog/pycon-wrap-up">my previous post</a>.</p>

<h3 id="this-website">This website</h3>

<p>I&#8217;ve moved out of GitHub Pages over to Netlify. This isn&#8217;t my first time
using Netlify, though. I used to host my old blog which ran Hugo, there.
I was tired of doing this terrible hack to maintain a single repo for
both my source (<code>master</code>) and deploy (<code>gh-pages</code>). In essence, here&#8217;s
what I did:</p>

<div class="codehilite"><pre><span></span><code><span class="ch">#!/usr/bin/env bash</span>

git push origin master
<span class="c1"># push contents of `build/` to the `gh-pages` branch</span>
git subtree push --prefix build origin gh-pages
</code></pre></div>

<p>I can now simply push to <code>master</code>, and Netlify generates a build for me
by installing <a href="https://github.com/icyphox/vite">vite</a>, and running <code>vite
build</code>. Very pleasant.</p>

<h3 id="mnmlwms-status"><code>mnmlwm</code>&#8217;s status</h3>

<p><a href="https://github.com/minimalwm/minimal">mnmlwm</a>, for those unaware, is my pet project which aims to be a simple
window manager written in Nim. I&#8217;d taken a break from it for a while
because Xlib is such a pain to work with (or I&#8217;m just dense). Anyway,
I&#8217;m planning on getting back to it, with some fresh inspiration from
Dylan Araps&#8217; <a href="https://github.com/dylanaraps/sowm">sowm</a>.</p>

<h3 id="other">Other</h3>

<p>I&#8217;ve been reading a lot of manga lately. Finished <em>Kekkon Yubiwa
Monogatari</em> (till the latest chapter) and <em>Another</em>, and I&#8217;ve just
started <em>Kakegurui</em>. I&#8217;ll reserve my opinions for when I update the
<a href="/reading">reading log</a>.</p>

<p>That&#8217;s about it, and I&#8217;ll see you &#8211; definitely not next week.</p>
 
    </div>
    <hr />
    <p class="muted">Questions or comments? Open an issue at <a href="https://github.com/icyphox/site">this repo</a>, or send a plain-text email to <a href="mailto:x@icyphox.sh">x@icyphox.sh</a>.</p>
    <footer>
      <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
        <img class="footimgs" src="/static/cc.svg">
        </a>
        <a href="https://webring.xxiivv.com/#random" target="_blank">
        <img class="footimgs" alt="xxiivv webring" src="/static/webring.svg">
        </a>
        
    </footer>
  </body>
  </div>
 </html>