<?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: Jonyk56</title>
    <description>The latest articles on DEV Community by Jonyk56 (@jonyk56).</description>
    <link>https://dev.to/jonyk56</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%2F364257%2F8cdbda5f-653d-4372-9555-8df94f9f670b.png</url>
      <title>DEV Community: Jonyk56</title>
      <link>https://dev.to/jonyk56</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jonyk56"/>
    <language>en</language>
    <item>
      <title>Xent.fx devblog 2</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Tue, 11 Oct 2022 15:28:57 +0000</pubDate>
      <link>https://dev.to/jonyk56/xentfx-devblog-2-34gi</link>
      <guid>https://dev.to/jonyk56/xentfx-devblog-2-34gi</guid>
      <description>&lt;p&gt;&lt;em&gt;well, I overshot my goals... .&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Hey folks! Been a lil' bit but I have news!&lt;br&gt;
Xent has entered the gamma stage of development and we are seeing a release for 0.2 alpha sometime in november...&lt;/p&gt;

&lt;p&gt;for now, enjoy some fancy import export code&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$DEF
@use[xcore]
&amp;amp;using[xcore] mks [io/in;;io/out] 
$MSP
cspace _[]{
   set _PlaceA as "work trying to make xent.fx a great language!" {ANY} %%type defs and variables :D
   %% type defs are: space (namespace), table (array/dictionary), cls (not usable yet), int, bool, double, ANY, str, chr, b8,ub8,b16,ub16,b32,ub32,b64,ub64
   in#put("heya folks! I am at ${get _PlaceA &amp;amp;&amp;amp;}") %% the &amp;amp;&amp;amp;} has a use I will explain in the future but for now just know it makes get work inside of the text!

}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now let's explain this code...&lt;/p&gt;

&lt;p&gt;line 1. &lt;code&gt;$DEF&lt;/code&gt;&lt;br&gt;
the &lt;code&gt;$DEF&lt;/code&gt; tells xent that you are about to import a whole lotta things &lt;/p&gt;

&lt;p&gt;line 2. &lt;code&gt;@use[xcore]&lt;/code&gt;&lt;br&gt;
xcore is the library of gods, if you wish to use anything that xent provides without an external source, xcore is the way to obtain that resource&lt;/p&gt;

&lt;p&gt;line 3. &lt;code&gt;&amp;amp;using[xcore] mks [io/in;;io/out]&lt;/code&gt;&lt;br&gt;
io/in and io/out are swapped! compared to most languages, in is the way you get inputs from console, but in xent &lt;em&gt;this is swapped and for good reason I will explain in alpha tests&lt;/em&gt;. The same situation is for out, out is the input from console.&lt;/p&gt;

&lt;p&gt;line 4. &lt;code&gt;$MSP&lt;/code&gt;&lt;br&gt;
&lt;del&gt;(c) microsoft project&lt;/del&gt; this literally is where the code truly starts, anything below this can be used and called ANYWHERE, while anything inside of a space can only be called when 'included'&lt;/p&gt;

&lt;p&gt;line 5. &lt;code&gt;cspace _[]{&lt;/code&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;cspace&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;the main code, this name may be changed but know it stands for the "direct call space"&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;_&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;"RUN ME FIRST"&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;[]&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;if you want to get a system variable, place it in these brackets (non exist yet)&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;{&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;if you know javascript you know what this is.&lt;/p&gt;

&lt;p&gt;line 6 needs no explanation.&lt;br&gt;
line 7 needs no explanation.&lt;/p&gt;

&lt;p&gt;anyways now that you've seen the newest xent example, lets talk about a few specifics&lt;br&gt;
xent will be a micro c++.&lt;br&gt;
how xent will work is it will be compiled into c++ code and the compiled further into a proper executable.&lt;br&gt;
The reason for this is to make xent &lt;em&gt;actually have a purpose&lt;/em&gt; as an intended to be easier language that works just like c++ and will allow you to see the c++ code that came out of the xent code. &lt;/p&gt;

&lt;p&gt;Seems like a buncha crap don't it? &lt;br&gt;
Yea it does but you gotta put some faith, Xent is like CoffeeScript. Xent will be like Typescript. Xent &lt;em&gt;is&lt;/em&gt; coming.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Xent.fx Devblog 1</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Thu, 01 Sep 2022 17:53:05 +0000</pubDate>
      <link>https://dev.to/jonyk56/xentfx-devblog-1-3he5</link>
      <guid>https://dev.to/jonyk56/xentfx-devblog-1-3he5</guid>
      <description>&lt;p&gt;'ello everyone!&lt;/p&gt;

&lt;p&gt;I know not a lot of people follow my dev.to or even are interested in Xent/Xent.fx at the moment, so I decided im going to make a devblog to keep people up to date on progress.&lt;/p&gt;

&lt;p&gt;as of now, Xent.fx has its main code about 2%ish done.&lt;/p&gt;

&lt;p&gt;With Xent.fx being back on my schedule, I'd like to give some code examples of Xent.fx so... here you go!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$DEFINES
@use[core] %%Core is a typespace and cannot be used directly.
%%&amp;amp;sudo[core](in) "in" %%You would uncomment this and use it if you wanted console inputs or a general input stream
&amp;amp;sudo[core](out) "out" %% provides you with basically the javascript console
$MAINSPACE
cspace _[]{
  in#log(`hello world`);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>strange...</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Wed, 31 Aug 2022 12:35:11 +0000</pubDate>
      <link>https://dev.to/jonyk56/strange-26gd</link>
      <guid>https://dev.to/jonyk56/strange-26gd</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--qtKjhBOE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/c680uvlhwddei4mtnkvo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qtKjhBOE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/c680uvlhwddei4mtnkvo.png" alt="Image description" width="161" height="70"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;anyways, yea this time im in it for good :)&lt;/p&gt;

&lt;p&gt;Xent.fx 0.2 - September 22nd, 2022&lt;br&gt;
Xent4Zig (not actually xent on the zig language that's too difficult but something else...) - 1st Quarter 2023.&lt;br&gt;
A game.... 3rd Quarter 2023 (First Down is the hint)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Year 2 of the Art of Destroying a USB</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Thu, 30 Dec 2021 23:53:33 +0000</pubDate>
      <link>https://dev.to/jonyk56/year-2-of-the-art-of-destroying-a-usb-e1m</link>
      <guid>https://dev.to/jonyk56/year-2-of-the-art-of-destroying-a-usb-e1m</guid>
      <description>&lt;p&gt;Whaddup folks! It's that time of year again where I do the very very very terrible decision of going to a shooting range and explosives field to destroy USBS and man this year was fun, I got to mess with A C I D and a few toxic folks from tiktok (No you won't get my tiktok, ever) to give suggestions on how to destroy, mangle, melt and vaporize my USBS this year... those were some terrible choices, glad I brought earplugs haha.&lt;/p&gt;

&lt;p&gt;So first off, I decided I'd use music to my advantage and I got a very special type of chemical in my posession that quite literally acts like an acid when you sing or play a Bb next to it.&lt;/p&gt;

&lt;p&gt;For the rest of my USBS, I decided I'd go ahead and use a sniper rifle on half, and explode the rest using low grade C4 (learned my lesson from last year using high grade!) and man was that fun!&lt;/p&gt;

&lt;p&gt;I can't say too much about the rest but I will probably post an image or two to twitter later!&lt;/p&gt;

&lt;p&gt;Jonyk5 OUT!&lt;/p&gt;

&lt;p&gt;(&lt;a href="https://twitter.com/Jonyk5_dev"&gt;Ma Twitta&lt;/a&gt;)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>so tides change</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Mon, 30 Aug 2021 14:01:40 +0000</pubDate>
      <link>https://dev.to/jonyk56/so-tides-change-3pfg</link>
      <guid>https://dev.to/jonyk56/so-tides-change-3pfg</guid>
      <description>&lt;p&gt;xent aint the king of my day.&lt;/p&gt;

&lt;p&gt;yes this is a riddle, go and have a fiddle.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>So yea, xent, xent future, are both worthless.</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Thu, 15 Apr 2021 14:50:33 +0000</pubDate>
      <link>https://dev.to/jonyk56/so-yea-xent-xent-future-are-both-worthless-3pcp</link>
      <guid>https://dev.to/jonyk56/so-yea-xent-xent-future-are-both-worthless-3pcp</guid>
      <description>&lt;p&gt;if you have been watching my github page, you know I've been inactive for quite a long time, during that period, team donut was disbanded and xent was no more. but well, who said I was done coding???? nah, we doing this again folks. BUT, this time the code will be better, this time the language will work properly, this time xent won't be such a nightmare to use.&lt;/p&gt;

&lt;p&gt;That's right, xent is getting an upgrade, and a new name.&lt;br&gt;
xent.fx, github wouldn't let me name it that for some weird reason, But moving on! &lt;/p&gt;

&lt;p&gt;xent.fx has some drastic changes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the entire language is being reworked, it will no longer be so strange in terms of syntax.&lt;/li&gt;
&lt;li&gt;plugins will actually be useful.&lt;/li&gt;
&lt;li&gt;macros will be useful aswell.&lt;/li&gt;
&lt;li&gt;variables will be added.&lt;/li&gt;
&lt;li&gt;arrays will be PLANNED.&lt;/li&gt;
&lt;li&gt;conditions and expressions will be added. &lt;/li&gt;
&lt;li&gt;It's now going to be coded in c++&lt;/li&gt;
&lt;li&gt;Literally everything else is being removed that was previously in xent.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;now, onto some information about xent.fx that isn't ( not ) related to the changes mentioned above:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I have an example of what the code would look like once the first official release is completed.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@use[core] %% import core module

cspace _[] { %% declare main code-space, or where the code will run
  core#log["like my example?"] %% it's just console.log in javascript...
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;er yea... that's all i can show for right now, Absolutely none of the code has been written yet. BUT i do need some help, since team donut is no longer around, i do not have a team that could help me. if anyone would like to help with the project, please dm me on discord ( Jonyk56#1929 ).&lt;/p&gt;

&lt;p&gt;Moving on, have a nice rest of your week, and lets look forward to summer! &lt;/p&gt;

</description>
    </item>
    <item>
      <title>optimization with cluster</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Thu, 14 Jan 2021 15:33:58 +0000</pubDate>
      <link>https://dev.to/jonyk56/optimization-with-cluster-127k</link>
      <guid>https://dev.to/jonyk56/optimization-with-cluster-127k</guid>
      <description>&lt;p&gt;hallo, today i though why not i actually show off something that's pretty nice that's been in nodejs, cluster. Now, yes cluster has been around for a very long time ( been around since node 0.10.48 to be exact ), and it has been one of the most useful modules for me imo. but, what exactly does it do, and why is it useful you might say?&lt;/p&gt;

&lt;p&gt;well, there's many reasons. &lt;br&gt;
one could be to optimize a multi-thread CPU and run with more speed.&lt;br&gt;
another could be you want to keep your database controller apart from the main process to speed things up.&lt;/p&gt;

&lt;p&gt;no matter what it is, cluster is a wonderful choice.&lt;/p&gt;

&lt;p&gt;My most recent project, quick-scripts ( You will learn more about this next month ), uses 3 threads total. it's as simple as this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;express&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;express&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;cluster&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;cluster&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cluster&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;isMaster&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;expressServer&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;cluster&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;fork&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="c1"&gt;//express server (id 1)&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;dbc&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;cluster&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;fork&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="c1"&gt;//database manager (id 2)&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;now, it may not look like much, but this is splitting up resources and optimizing speed.&lt;br&gt;
now, each worker ( this is what you call the child of a parent process ), listens to the master ( the master is the parent of the cluster ), it's extremely simple to communicate between the two. all it takes is&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;expressServer&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;send&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;deny all r&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and on the worker's end,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;process&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;on&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;message&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;message&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="c1"&gt;//...&lt;/span&gt;
&lt;span class="p"&gt;})&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and bam! you have a working communication between the two.&lt;/p&gt;

&lt;p&gt;another thing cluster is useful for, is just clearing out a bit of clutter that normal processes make. it's simplistic, and denies the fame of childprocess, which imo is absolutely horrific to use.&lt;/p&gt;

&lt;p&gt;now, lets go get cluster some rep it deserves for doing what it does.&lt;/p&gt;

</description>
      <category>node</category>
      <category>javascript</category>
      <category>cluster</category>
    </item>
    <item>
      <title>new year, new project</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Thu, 31 Dec 2020 18:34:31 +0000</pubDate>
      <link>https://dev.to/jonyk56/new-year-new-project-5a87</link>
      <guid>https://dev.to/jonyk56/new-year-new-project-5a87</guid>
      <description>&lt;p&gt;eh, it's new year, what's new other than the year???? Well, a very massive project.... Code Fortify.&lt;/p&gt;

&lt;p&gt;What Code Fortify is, is basically a project management software that will outclass tools such as gitkracken and trello but also have things such as a built-in code editor.&lt;/p&gt;

&lt;p&gt;The total list of features I've planned has already racked up to over 50, so if you have your suggestions, leave em below.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>12 days of suspense</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Wed, 23 Dec 2020 19:07:55 +0000</pubDate>
      <link>https://dev.to/jonyk56/12-days-of-suspense-4gm8</link>
      <guid>https://dev.to/jonyk56/12-days-of-suspense-4gm8</guid>
      <description>&lt;p&gt;so, suspense...... how?&lt;br&gt;
well, a lot is happening in every developer's book these next few days, so this is basically a rant on my end, Also &lt;strong&gt;xent&lt;/strong&gt; is being retired temporarily so I can work on some bigger projects, No monthly updates on xent until at least June.&lt;/p&gt;

&lt;p&gt;So, what's happening in my book?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Ender Bot has returned, with a new focus: everything security-related.&lt;/li&gt;
&lt;li&gt;I'm getting a new pc... it's hard to set up a new pc.&lt;/li&gt;
&lt;li&gt;Everyone gets a present this year!&lt;/li&gt;
&lt;li&gt;eh, to be fair I just wanted to post something this month since I almost forgot, sorry for taking your time, everything here was a literal joke except ender bot and the new pc... cya next year&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>on the horizon</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Wed, 09 Dec 2020 00:48:07 +0000</pubDate>
      <link>https://dev.to/jonyk56/on-the-horizon-4g2b</link>
      <guid>https://dev.to/jonyk56/on-the-horizon-4g2b</guid>
      <description>&lt;p&gt;There are many things just on the horizon within reach these days, a sars-nCov-2 vaccine, life being able to return to normal, new languages, new youtube videos, the whole shebang... so what's on the horizon that i'm talking about? It's a new OS &lt;a class="comment-mentioned-user" href="https://dev.to/17lwinn"&gt;@17lwinn&lt;/a&gt;
 ( and now me ) is working on... We have some major plans for it, including Xent being involved ( my own personal plans for it ) for things such as events, and even more stuff!&lt;/p&gt;

&lt;p&gt;I'll be giving updates throughout the month and into next year on this project and others coming along with it!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Break the code</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Sat, 21 Nov 2020 01:37:28 +0000</pubDate>
      <link>https://dev.to/jonyk56/break-the-code-5684</link>
      <guid>https://dev.to/jonyk56/break-the-code-5684</guid>
      <description>&lt;p&gt;Eh, nothing to say too much this month....&lt;/p&gt;

&lt;p&gt;Oh wait, there is!&lt;/p&gt;

&lt;p&gt;A new &lt;a href="https://breakthecode.tech/"&gt;hackathon&lt;/a&gt; has just begun!!!&lt;/p&gt;

&lt;p&gt;BreakTheCode, sponsored by .tech domains, is a brand new Hackathon that intends to bring new challenges to our average programmer selves. The competition ends on December 2nd, So i'd suggest you join asap!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Where I've been...</title>
      <dc:creator>Jonyk56</dc:creator>
      <pubDate>Tue, 03 Nov 2020 14:02:22 +0000</pubDate>
      <link>https://dev.to/jonyk56/where-i-ve-been-18ba</link>
      <guid>https://dev.to/jonyk56/where-i-ve-been-18ba</guid>
      <description>&lt;p&gt;You might've not seen a lot of me recently. I've been quite inactive on twitter, discord, here on dev, and on some other places.... well, I've got quite the explanation. I've been learning a new programming language, and because I am learning it, I have a massive project. The language in question is known as "zig". it is written in c++, and is a minimalistic and fast programming language. So, what have I been working on? A web server framework. Yep, you heard me. A web server framework. I see zig as a chance to grow and be better known here in the programming world. So, If you'll excuse me, &lt;strong&gt;I have some learning to do ;)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;also, possibly coming soon is a blog site for me, I haven't decided if I actually want to add it yet or not.&lt;/p&gt;

</description>
      <category>zig</category>
      <category>cpp</category>
      <category>rust</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
