<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Blogs on Kyle Simpson</title>
    <link>https://mcfelix.me/blog/</link>
    <description>Recent content in Blogs on Kyle Simpson</description>
    <generator>Hugo</generator>
    <language>en-GB</language>
    <lastBuildDate>Fri, 17 Feb 2023 18:01:42 +0000</lastBuildDate>
    <atom:link href="https://mcfelix.me/blog/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Looking back on 2022</title>
      <link>https://mcfelix.me/blog/2022-in-review/</link>
      <pubDate>Fri, 17 Feb 2023 18:01:42 +0000</pubDate>
      <guid>https://mcfelix.me/blog/2022-in-review/</guid>
      <description>&lt;p&gt;Singer-songwriter Katherine Priddy wrote earlier this month on &lt;a href=&#34;https://www.katherinepriddy.co.uk/the-waiting-season/&#34;&gt;how the New Year brings a mixture of hope, expectations, and bleakness&lt;/a&gt;.&#xA;Naturally, she has a beautiful and poetic take on the gravity and pressures of January which I can&amp;rsquo;t pretend to imitate, but in amongst her thoughts is her drive to &amp;ldquo;turn back and appreciate what [she] did in 2022&amp;rdquo;.&lt;/p&gt;&#xA;&lt;p&gt;This stuck with me in a way I couldn&amp;rsquo;t immediately put my finger on.&#xA;Mulling on it, I realised that a lot of parts of my life had came to a close all at once at the tail of last year, leaving me in a weird, transitional place.&#xA;Meanwhile I entered 2023 rather disoriented; bleary-eyed and a little burnt out trying to neatly tie up my postdoc, the passage of the Bells never quite registered for me.&#xA;I&amp;rsquo;ve had more time to myself since starting my new post, and thought it&amp;rsquo;d help me to reflect on some of the things I&amp;rsquo;ve completed &amp;ndash; to turn back and appreciate 2022.&lt;/p&gt;</description>
    </item>
    <item>
      <title>(Almost) Lockless Stream Buffering</title>
      <link>https://mcfelix.me/blog/shared-buffers/</link>
      <pubDate>Mon, 27 Apr 2020 00:00:00 +0100</pubDate>
      <guid>https://mcfelix.me/blog/shared-buffers/</guid>
      <description>&lt;p&gt;Recently, I&amp;rsquo;ve been working on retooling the audio processing code for &lt;a href=&#34;https://github.com/serenity-rs/serenity&#34;&gt;serenity&lt;/a&gt;, a Discord bot library.&#xA;Adding features like looping, seeking, and shared resources between calls is made difficult when all input data arrives over pipes from &lt;code&gt;ffmpeg&lt;/code&gt; and similar decoders.&#xA;Due to this, I&amp;rsquo;ve designed a thread-safe shared stream buffer intended to lock only on accessing and storing new data.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Thoughts on Vana&#39;diel</title>
      <link>https://mcfelix.me/blog/on-ffxi/</link>
      <pubDate>Fri, 31 May 2019 13:29:13 +0100</pubDate>
      <guid>https://mcfelix.me/blog/on-ffxi/</guid>
      <description>&lt;p&gt;It&amp;rsquo;s strange, I think, how a sense of nostalgia for a virtual world (or point in time) arises from where we least expect it.&#xA;A visual aesthetic, the feel of a specific piece of music, an outlook on the world and one&amp;rsquo;s place in its community.&#xA;More and more, my thoughts have been drawn by these flashes towards the time I spent in Vana&amp;rsquo;diel&amp;mdash;not a world I thrived in, but one that has nevertheless shaped me.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Felyne Bot, and Initial Thoughts on Rust</title>
      <link>https://mcfelix.me/blog/rust-init-thoughts/</link>
      <pubDate>Tue, 27 Feb 2018 22:41:21 +0000</pubDate>
      <guid>https://mcfelix.me/blog/rust-init-thoughts/</guid>
      <description>&lt;p&gt;Having been bereft of a way to annoy my fellow Discord users (and itching to learn a new language), I&amp;rsquo;ve found myself experimenting with &lt;a href=&#34;https://www.rust-lang.org&#34;&gt;Rust&lt;/a&gt;.&#xA;It&amp;rsquo;s been fun and tiring writing &lt;a href=&#34;https://github.com/FelixMcFelix/felyne-bot&#34;&gt;Felyne bot&lt;/a&gt; in a new language, and I&amp;rsquo;ve gotten some more language experience by helping develop &lt;a href=&#34;https://github.com/zeyla/serenity&#34;&gt;Serenity&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Custom Open vSwitch Actions</title>
      <link>https://mcfelix.me/blog/modifying-ovs/</link>
      <pubDate>Mon, 04 Dec 2017 15:36:00 +0000</pubDate>
      <guid>https://mcfelix.me/blog/modifying-ovs/</guid>
      <description>&lt;p&gt;For a project I&amp;rsquo;ve been working on (reimplementing some &lt;a href=&#34;https://doi.org/10.1016/j.engappai.2015.01.013&#34;&gt;past work&lt;/a&gt;), being able to easily enable&#xA;pushback at various points in the network is fairly important.&#xA;For this, I wanted to try something I&amp;rsquo;d both learn from and be able to use as a&#xA;springboard for later development and testing &amp;ndash; &lt;a href=&#34;http://mininet.org/&#34;&gt;mininet&lt;/a&gt;&#xA;(and by extension, &lt;a href=&#34;http://openvswitch.org&#34;&gt;Open vSwitch&lt;/a&gt;) seemed like a good&#xA;fit. Part of this requires a new feature to be hacked on top of OpenFlow:&#xA;&lt;strong&gt;probabilistic packet dropping&lt;/strong&gt;. I&amp;rsquo;ve written this short&#xA;walkthrough/tutorial on the process for the benefit of anyone looking to make&#xA;their own modifications. A full repository is included &lt;a href=&#34;https://github.com/FelixMcFelix/ovs/tree/ppd&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;[EDIT 2019-03-27]:&lt;/strong&gt; &lt;em&gt;Updated for &lt;a href=&#34;https://github.com/openvswitch/ovs/commit/8e738337a2c25c3d6ede2829d6ffd9af6bcd36a5&#34;&gt;OVS revision 8e73833&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
