<?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: Freeboardtortoise</title>
    <description>The latest articles on DEV Community by Freeboardtortoise (@freeboardtortoise).</description>
    <link>https://dev.to/freeboardtortoise</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%2F3335257%2F2e8e3c3a-01c3-4eba-99df-f5824b518944.png</url>
      <title>DEV Community: Freeboardtortoise</title>
      <link>https://dev.to/freeboardtortoise</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/freeboardtortoise"/>
    <language>en</language>
    <item>
      <title>Velocity OS - added macros and the custom settable keybinds from the config</title>
      <dc:creator>Freeboardtortoise</dc:creator>
      <pubDate>Tue, 10 Mar 2026 19:08:16 +0000</pubDate>
      <link>https://dev.to/freeboardtortoise/velocity-os-added-macros-and-the-custom-settable-keybinds-from-the-config-35j2</link>
      <guid>https://dev.to/freeboardtortoise/velocity-os-added-macros-and-the-custom-settable-keybinds-from-the-config-35j2</guid>
      <description>&lt;p&gt;&lt;strong&gt;commit Hash: ea389b2c8ac4aebc30c61bb4f90f9b778aa1a51d&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hello all... following my last commitment to post about each merge to main. Here is the next merges notes:&lt;/p&gt;

&lt;h2&gt;
  
  
  What did I do:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;I have added support for macros to vshell&lt;/li&gt;
&lt;li&gt;I have added support for custom keybinds to vshell&lt;/li&gt;
&lt;li&gt;I have made the vlogin program auto-start&lt;/li&gt;
&lt;li&gt;pretty much made it an only one user system&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  other notes and ramblings
&lt;/h2&gt;

&lt;p&gt;I have realized many a security problems but that's besides the point... basically you can remove the auto-start of login system and bypass the login program.&lt;/p&gt;

&lt;p&gt;The macros that I have added allow you to do things like&lt;br&gt;
&lt;code&gt;ll&lt;/code&gt; becomes &lt;code&gt;ls -lah&lt;/code&gt; or&lt;br&gt;
&lt;code&gt;home&lt;/code&gt; becomes &lt;code&gt;cd $HOME&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;and the custom keybinds allows you to change things like&lt;br&gt;
in mode &lt;code&gt;insert&lt;/code&gt; if you press &lt;code&gt;s&lt;/code&gt;... the command &lt;code&gt;ll&lt;/code&gt; or &lt;code&gt;ls -lah&lt;/code&gt; runs&lt;/p&gt;

&lt;h2&gt;
  
  
  What would I like to work on next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;adding basic AI or something of the sort to vshell&lt;/li&gt;
&lt;li&gt;compiling vim or nvim statically into the OS as a default&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>buildinpublic</category>
      <category>cli</category>
      <category>devjournal</category>
      <category>showdev</category>
    </item>
    <item>
      <title>VelocityOS devlog: New schedule</title>
      <dc:creator>Freeboardtortoise</dc:creator>
      <pubDate>Mon, 02 Mar 2026 19:39:57 +0000</pubDate>
      <link>https://dev.to/freeboardtortoise/dev-log-3-c64</link>
      <guid>https://dev.to/freeboardtortoise/dev-log-3-c64</guid>
      <description>&lt;p&gt;It has been a while since I have done a post. The new schedule is on each main merge from after this post.&lt;/p&gt;

&lt;p&gt;what I have been working on is a Machine Learning framework for Vlang to use in Vshell program... I have gotten to the basics and making the network struct and the layers generator and struct... generating floats and the sorts. From now ... remember ... each merge to main is going to be a Dev-log post and I will reference the commit hash so you can go and check it out.&lt;/p&gt;

&lt;p&gt;if you have no idea what I am talking about the go and read the rest of the logs in the series so far.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>vlang</category>
      <category>ai</category>
    </item>
    <item>
      <title>velocity OS devlog</title>
      <dc:creator>Freeboardtortoise</dc:creator>
      <pubDate>Wed, 18 Feb 2026 09:15:28 +0000</pubDate>
      <link>https://dev.to/freeboardtortoise/velocity-os-devlog-30ji</link>
      <guid>https://dev.to/freeboardtortoise/velocity-os-devlog-30ji</guid>
      <description>&lt;p&gt;Greatings all who have taken the time to read this&lt;/p&gt;

&lt;p&gt;this is a devlog on my progress on velocity OS… I post whenever I have the time to&lt;/p&gt;

&lt;p&gt;since the last post I have created a build system called vbuild… and abandoned it because it is way to mutch effort to rewrite my compile/build script and it is less powerfull than a plain bash script…&lt;/p&gt;

&lt;p&gt;I have instead started to work on a custom package manager called vpkg and it somewhat works the way that I had intended… it is an open source one that pulls from a package database and then unzips the .tar.gz and runs &lt;code&gt;./configure&lt;/code&gt; and then &lt;code&gt;make&lt;/code&gt; and then &lt;code&gt;make install&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;it has recently been merged into main branch… if you are intorested…  here is the github link:&lt;br&gt;
&lt;code&gt;https://github.com/freeboardtortoise/vos&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;if you are intorested it helping… email me at &lt;code&gt;freeboardtortoise@proton.me&lt;/code&gt;&lt;/p&gt;

</description>
      <category>devjournal</category>
      <category>opensource</category>
      <category>programming</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Velocity OS devlog no.2</title>
      <dc:creator>Freeboardtortoise</dc:creator>
      <pubDate>Thu, 05 Feb 2026 19:12:15 +0000</pubDate>
      <link>https://dev.to/freeboardtortoise/velocity-os-devlog-no2-4jc</link>
      <guid>https://dev.to/freeboardtortoise/velocity-os-devlog-no2-4jc</guid>
      <description>&lt;p&gt;Greetings all&lt;/p&gt;

&lt;p&gt;This is the second dev-log for The Velocity OS project&lt;/p&gt;

&lt;p&gt;I have been working on making a custom shell for the Linux distro and I have finished the basic implementation of it. Now I am starting to write a new build system to make it more expandable. Basically rewriting make... indeed it is an enjoyable experience&lt;/p&gt;

&lt;p&gt;The Vshell program is based on the philosophy of Vim or Nvim, it uses modal editing and so far uses no mouse at all, I have implemented a basic tutorial, a config system, keybindings that are somewhat like vim's key binds.&lt;/p&gt;

&lt;p&gt;That's all for now. Thanks for Reading, see you all soon&lt;/p&gt;

</description>
      <category>cli</category>
      <category>devjournal</category>
      <category>linux</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Launch of my devlog</title>
      <dc:creator>Freeboardtortoise</dc:creator>
      <pubDate>Wed, 04 Feb 2026 19:15:21 +0000</pubDate>
      <link>https://dev.to/freeboardtortoise/launch-of-my-devlog-3jmj</link>
      <guid>https://dev.to/freeboardtortoise/launch-of-my-devlog-3jmj</guid>
      <description>&lt;p&gt;&lt;strong&gt;devlog no 1&lt;br&gt;
introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hello all&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Velocity OS
&lt;/h2&gt;

&lt;p&gt;Velocity OS is an OS where productivity comes first and usability comes last basictly built on vim's editor philosophy or hyprland wm... for example... if you want to use you computer as fast as you can for document editing or programming, you can you it a lot faster than if you use windows or maybe even some Linux systems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why am I writing a dev-log
&lt;/h2&gt;

&lt;p&gt;The reason for writing a dev-log is to make this project more well known and build a small team to help me in the process.&lt;/p&gt;

&lt;h2&gt;
  
  
  When will I be posting updates
&lt;/h2&gt;

&lt;p&gt;Whenever I have done something interesting&lt;/p&gt;

</description>
      <category>devlog</category>
      <category>os</category>
      <category>programming</category>
    </item>
    <item>
      <title>Join the Velocity Operating System team : a productivity linux distro</title>
      <dc:creator>Freeboardtortoise</dc:creator>
      <pubDate>Thu, 29 Jan 2026 06:01:26 +0000</pubDate>
      <link>https://dev.to/freeboardtortoise/join-the-velocity-operating-system-team-a-productivity-linux-distro-3c6i</link>
      <guid>https://dev.to/freeboardtortoise/join-the-velocity-operating-system-team-a-productivity-linux-distro-3c6i</guid>
      <description>&lt;p&gt;I’m building a small team of open-source developers to create a Linux-based operating system designed with Productivity First, user friendly last&lt;/p&gt;

&lt;p&gt;This OS will be written in Vlang, offering speed, simplicity, and modern design. It’s all about cutting through the noise and delivering an environment where you can do more with less.&lt;/p&gt;

&lt;p&gt;No fluff. No distractions. If you’re tired of bloated systems that slow you down, and you believe in the power of minimalist, high-efficiency environments, then this project is for you.&lt;/p&gt;

&lt;p&gt;Important: This is a passion project. No one will get paid, but the reward? The chance to contribute to something that could reshape how we work and create.&lt;/p&gt;

&lt;p&gt;If you want to be part of this open-source journey:&lt;/p&gt;

&lt;p&gt;drop me an email at &lt;a href="mailto:freeboardtortoise@proton.me"&gt;freeboardtortoise@proton.me&lt;/a&gt;&lt;br&gt;
or reply to this post&lt;br&gt;
github link &lt;a href="https://github.com/freeboardtortoise/VOS" rel="noopener noreferrer"&gt;https://github.com/freeboardtortoise/VOS&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What do we need:&lt;/p&gt;

&lt;p&gt;Low level devs with experiance in low-level and linux programming&lt;br&gt;
Devs that can write or who are intrested in writing in Vlang&lt;br&gt;
Devs that have experiance in Vim-style editors and UI’s&lt;br&gt;
Let’s build something epic, together.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>vlang</category>
      <category>linux</category>
      <category>productivity</category>
    </item>
    <item>
      <title>3 Days until Brain**k game jam 2025</title>
      <dc:creator>Freeboardtortoise</dc:creator>
      <pubDate>Thu, 11 Sep 2025 07:41:51 +0000</pubDate>
      <link>https://dev.to/freeboardtortoise/3-days-until-braink-game-jam-2025-4bgk</link>
      <guid>https://dev.to/freeboardtortoise/3-days-until-braink-game-jam-2025-4bgk</guid>
      <description>&lt;p&gt;Ready for a wild coding challenge?&lt;br&gt;
Write games and interactive experiences using Brainf*&lt;em&gt;k — right in your browser with the freeboardtortoise Brainf*ck Game Engine.&lt;br&gt;
No installs needed&lt;br&gt;
Live framebuffer &amp;amp; console preview&lt;br&gt;
1 week to submit your Brainfuck-powered creation&lt;br&gt;
Hosted on Itch.io: &lt;a href="https://itch.io/jam/the-bf-jam" rel="noopener noreferrer"&gt;https://itch.io/jam/the-bf-jam&lt;/a&gt;&lt;br&gt;
Whether you’re a Brainf&lt;/em&gt;*k pro or just curious, this jam is your chance to push your skills in a fun, unusual way.&lt;br&gt;
Starts soon — get your brain ready! 🧠🔥&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>challenge</category>
    </item>
    <item>
      <title>Join the Brainf*ck Game Engine Jam on Itch.io!</title>
      <dc:creator>Freeboardtortoise</dc:creator>
      <pubDate>Mon, 08 Sep 2025 07:43:54 +0000</pubDate>
      <link>https://dev.to/freeboardtortoise/join-the-brainfck-game-engine-jam-on-itchio-5ahh</link>
      <guid>https://dev.to/freeboardtortoise/join-the-brainfck-game-engine-jam-on-itchio-5ahh</guid>
      <description>&lt;p&gt;Hey developers! 👋  &lt;/p&gt;

&lt;p&gt;I’m hosting a &lt;strong&gt;game jam using the freeboardtortoise Brainf*ck Game Engine&lt;/strong&gt;, a browser-based engine where Brainfuck code drives gameplay and visuals. It’s perfect for anyone who loves coding challenges, esoteric programming, or just wants to experiment with something truly unique.&lt;/p&gt;

&lt;h3&gt;
  
  
  🧠 What is the Brainfuck Game Engine?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Run Brainfuck programs directly in your browser.&lt;/li&gt;
&lt;li&gt;Render a framebuffer, tape, and console — all live as you code.&lt;/li&gt;
&lt;li&gt;Use simple commands to control visuals and game logic.&lt;/li&gt;
&lt;li&gt;No installation required: it works on any modern browser.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Check it out here: &lt;a href="https://freeboardtortoise.github.io/brainfuck-game-engine" rel="noopener noreferrer"&gt;Brainf*ck Game Engine&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  🎮 The Jam
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Platform:&lt;/strong&gt; &lt;a href="https://itch.io/jam/the-bf-jam" rel="noopener noreferrer"&gt;Itch.io&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;**To Be revieled on the itch.io page on the start date&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Duration:&lt;/strong&gt; 1 week
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Submission:&lt;/strong&gt; Share your Brainfuck game/project on the Itch.io jam page.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Whether you’re a Brainfuck veteran or a curious newcomer, this is your chance to make something wild and share it with the community.&lt;/p&gt;

&lt;h3&gt;
  
  
  🏆 Why join?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Challenge your coding skills in a fun and unusual way.
&lt;/li&gt;
&lt;li&gt;See how others solve creative programming puzzles.
&lt;/li&gt;
&lt;li&gt;Fully online — no installs or downloads required.
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  📌 How to participate
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Open the Brainf*ck Game Engine in your browser.&lt;/li&gt;
&lt;li&gt;Write a game or interactive program using Brainf*ck.&lt;/li&gt;
&lt;li&gt;Submit your creation on the Itch.io jam page.
&lt;/li&gt;
&lt;li&gt;Have fun, learn, and maybe even get inspired for your next project!
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I can’t wait to see what you create! 🖤&lt;/p&gt;

</description>
      <category>gamejam</category>
      <category>webdev</category>
      <category>programming</category>
      <category>challenge</category>
    </item>
  </channel>
</rss>
