<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Vincent Muriithi</title>
    <description>The latest articles on DEV Community by Vincent Muriithi (@vincent_muriithi).</description>
    <link>https://dev.to/vincent_muriithi</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3739468%2F7c1e4544-4d37-4320-8379-b0b8e67c5aec.jpg</url>
      <title>DEV Community: Vincent Muriithi</title>
      <link>https://dev.to/vincent_muriithi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vincent_muriithi"/>
    <language>en</language>
    <item>
      <title>Reproducible Embedded Rust Development with Docker (Introducing kariRS)</title>
      <dc:creator>Vincent Muriithi</dc:creator>
      <pubDate>Fri, 06 Feb 2026 08:04:47 +0000</pubDate>
      <link>https://dev.to/vincent_muriithi/reproducible-embedded-rust-development-with-docker-introducing-karirs-2o92</link>
      <guid>https://dev.to/vincent_muriithi/reproducible-embedded-rust-development-with-docker-introducing-karirs-2o92</guid>
      <description>&lt;h2&gt;
  
  
  The Problem with Embedded Development Environments
&lt;/h2&gt;

&lt;p&gt;Embedded development often starts with environment setup — installing compilers, configuring toolchains, setting up flashing utilities, and resolving dependency issues across different systems.&lt;/p&gt;

&lt;p&gt;This setup process can be time-consuming and inconsistent, especially when working across multiple machines or CI environments.&lt;/p&gt;

&lt;p&gt;To simplify this workflow, I created &lt;strong&gt;kariRS&lt;/strong&gt;, a Rust-based embedded framework that provides a structured setup-and-loop execution model for microcontrollers. To make onboarding even easier, kariRS is now available as a &lt;strong&gt;pre-configured Docker image&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The goal is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Start embedded development immediately without spending hours configuring toolchains.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  What is kariRS?
&lt;/h3&gt;

&lt;p&gt;kariRS is a Rust-based embedded framework designed to provide:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A structured initialization and runtime execution model&lt;/li&gt;
&lt;li&gt;A unified CLI for project management and flashing&lt;/li&gt;
&lt;li&gt;Hardware abstraction for supported microcontrollers&lt;/li&gt;
&lt;li&gt;A consistent development experience across systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It focuses on reducing setup complexity while allowing developers to benefit from Rust’s memory safety and strong typing.&lt;/p&gt;




&lt;h3&gt;
  
  
  The Problem with Embedded Toolchains
&lt;/h3&gt;

&lt;p&gt;Anyone who has worked with embedded development knows the common issues:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Different compiler versions across machines&lt;/li&gt;
&lt;li&gt;Missing dependencies&lt;/li&gt;
&lt;li&gt;Broken flashing tools&lt;/li&gt;
&lt;li&gt;CI environments behaving differently from local setups&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This leads to the classic situation:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“It works on my machine.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Docker helps solve this by packaging the entire development environment into a reproducible container.&lt;/p&gt;




&lt;h3&gt;
  
  
  Introducing the kariRS Docker Image
&lt;/h3&gt;

&lt;p&gt;The official kariRS Docker image includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Rust nightly + cargo preinstalled&lt;/li&gt;
&lt;li&gt;Embedded AVR toolchains (&lt;code&gt;gcc-avr&lt;/code&gt;, &lt;code&gt;avr-libc&lt;/code&gt;, &lt;code&gt;avrdude&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;kariRS CLI ready to use&lt;/li&gt;
&lt;li&gt;A fully isolated and reproducible environment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This allows developers to run kariRS without installing any embedded tooling locally.&lt;/p&gt;




&lt;h3&gt;
  
  
  Getting Started
&lt;/h3&gt;

&lt;p&gt;Pull the image:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker pull vincentmuriithi/karirs:latest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Run an interactive container:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker run &lt;span class="nt"&gt;-it&lt;/span&gt; &lt;span class="nt"&gt;--rm&lt;/span&gt; vincentmuriithi/karirs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Create a project inside the container:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;kari new blink
&lt;span class="nb"&gt;cd &lt;/span&gt;blink
kari build
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Working with Local Projects (Recommended)
&lt;/h3&gt;

&lt;p&gt;Mount your workspace so projects persist outside the container:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker run &lt;span class="nt"&gt;-dit&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--name&lt;/span&gt; kariRS &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-v&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="si"&gt;$(&lt;/span&gt;&lt;span class="nb"&gt;pwd&lt;/span&gt;&lt;span class="si"&gt;)&lt;/span&gt;&lt;span class="s2"&gt;:/workspace"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  vincentmuriithi/karirs:latest bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Why Docker for Embedded Development?
&lt;/h3&gt;

&lt;p&gt;Using Docker provides:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reproducible builds&lt;/li&gt;
&lt;li&gt;Zero environment setup
&lt;/li&gt;
&lt;li&gt;Easy CI integration&lt;/li&gt;
&lt;li&gt;Consistent results across machines &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is especially useful for teams or open-source contributors who need identical build environments.&lt;/p&gt;

&lt;h3&gt;
  
  
  Links
&lt;/h3&gt;

&lt;p&gt;Docker image: https: //hub.docker.com/r/vincentmuriithi/karirs&lt;br&gt;
Github repository: &lt;a href="https://github.com/vincentmuriithi/kariRS" rel="noopener noreferrer"&gt;https://github.com/vincentmuriithi/kariRS&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you’re interested in reproducible embedded workflows or experimenting with embedded Rust, feel free to try it out and share your thoughts.&lt;/p&gt;

</description>
      <category>karirs</category>
      <category>docker</category>
      <category>embeddedsystems</category>
      <category>rust</category>
    </item>
    <item>
      <title>Introducing kariRS: Rust for Embedded Systems</title>
      <dc:creator>Vincent Muriithi</dc:creator>
      <pubDate>Thu, 29 Jan 2026 14:58:29 +0000</pubDate>
      <link>https://dev.to/vincent_muriithi/introducing-karirs-rust-for-embedded-systems-178i</link>
      <guid>https://dev.to/vincent_muriithi/introducing-karirs-rust-for-embedded-systems-178i</guid>
      <description>&lt;h2&gt;
  
  
  Introducing kariRS: Exploring Rust for Embedded Systems
&lt;/h2&gt;

&lt;p&gt;Rust is gaining traction in the embedded world thanks to its safety and performance.&lt;br&gt;&lt;br&gt;
I’ve started building &lt;strong&gt;kariRS&lt;/strong&gt;, a project that explores how Rust can be used for microcontrollers and hardware projects.&lt;/p&gt;


&lt;h3&gt;
  
  
  🎥 Watch the Intro Session
&lt;/h3&gt;

&lt;p&gt;Here’s a recording where I walk through KariRS and how to get started:&lt;br&gt;&lt;br&gt;


  &lt;iframe src="https://www.youtube.com/embed/g9TdPPBoVKY"&gt;
  &lt;/iframe&gt;


&lt;/p&gt;




&lt;h3&gt;
  
  
  🔑 What kariRS Focuses On
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Using Rust for embedded programming.
&lt;/li&gt;
&lt;li&gt;Making microcontroller projects safer and more reliable. &lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  💻 Explore the Framework on GitHub
&lt;/h3&gt;

&lt;p&gt;The  &lt;strong&gt;kariRS&lt;/strong&gt; framework is available on GitHub:&lt;br&gt;&lt;br&gt;
👉 &lt;a href="https://github.com/vincentmuriithi/kariRS" rel="noopener noreferrer"&gt;github.com/vincentmuriithi/kariRS&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check out the repo to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Access &lt;a href="https://github.com/vincentmuriithi/kariRS/releases" rel="noopener noreferrer"&gt;documentation and downloads&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Explore examples and starter templates.&lt;/li&gt;
&lt;li&gt;Follow updates as KariRS evolves.&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  🌐 Connect with the Community
&lt;/h3&gt;

&lt;p&gt;Want to discuss kariRS, share projects, or ask questions?&lt;br&gt;&lt;br&gt;
Join the kariRS developer community on Discord: &lt;a href="https://discord.gg/j5eaU7sQ" rel="noopener noreferrer"&gt;https://discord.gg/j5eaU7sQ&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  💬 Join the Journey
&lt;/h3&gt;

&lt;p&gt;KariRS is still growing. I’d love feedback from the community:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What projects would you like to see in Rust?
&lt;/li&gt;
&lt;li&gt;What features would you like to see in kariRS?&lt;/li&gt;
&lt;li&gt;Would you be interested in workshops or training sessions?
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let’s explore Rust in embedded systems together!&lt;/p&gt;

</description>
      <category>karirs</category>
      <category>embeddedrust</category>
      <category>embeddedsystems</category>
      <category>engineering</category>
    </item>
  </channel>
</rss>
