<?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: Tyr</title>
    <description>The latest articles on DEV Community by Tyr (@tyrkanzyka).</description>
    <link>https://dev.to/tyrkanzyka</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4071162%2F3c439700-c3c3-4818-8dc6-b77ecf564adc.png</url>
      <title>DEV Community: Tyr</title>
      <link>https://dev.to/tyrkanzyka</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tyrkanzyka"/>
    <language>en</language>
    <item>
      <title>Vars and muts )ruff(</title>
      <dc:creator>Tyr</dc:creator>
      <pubDate>Mon, 10 Aug 2026 21:43:28 +0000</pubDate>
      <link>https://dev.to/tyrkanzyka/vars-and-muts-ruff-2i1l</link>
      <guid>https://dev.to/tyrkanzyka/vars-and-muts-ruff-2i1l</guid>
      <description>&lt;p&gt;Okay Okay, I've used the Rust book online and W3 schools mostly to learn most of what I know. Plus a video or two, but I can't focus on them as of well.&lt;/p&gt;

&lt;p&gt;Alright, first time putting this to text, but I'll try and explain the concepts, how I myself understand them. From Ch 3 of the Rust book. &lt;/p&gt;

&lt;p&gt;So in CH 3 it essentially focuses on variables )your x's, y's etc. etc.( and how variables in rust are by def not able to changed, "immutable" by the book.&lt;/p&gt;

&lt;p&gt;The gist of why is that it guarantees the variable isn't changed when it's not supposed to be or by another function.&lt;/p&gt;

&lt;p&gt;It also just serves like a safety blanket of sorts, say if you were to have a huge program. You use "let x = 5" you'll know that x = 5 EVERYWHERE. It won't change because the program won't run, you won't even get past the compiler if you try and change the value without saying it can change. &lt;/p&gt;

&lt;p&gt;This helps in stopping bugs from cropping up, specially since it's how malactors get in. helps debugging by knowing what can and can't flip a bit. Plus if you're building robust code, less stuff changing is better, cuz less stuff fails.. Like a car.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight rust"&gt;&lt;code&gt;&lt;span class="k"&gt;fn&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
 &lt;span class="k"&gt;let&lt;/span&gt; &lt;span class="n"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
 &lt;span class="n"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;20294&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c1"&gt;// you can't change this, it'll show as an error since you "x" isn't "mut" mutable, or changeable.&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;simple, right? Roast me if wrong.&lt;br&gt;
08.10.26&lt;br&gt;
-Tyr&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>newbie</category>
      <category>learning</category>
    </item>
    <item>
      <title>Yo</title>
      <dc:creator>Tyr</dc:creator>
      <pubDate>Mon, 10 Aug 2026 11:26:47 +0000</pubDate>
      <link>https://dev.to/tyrkanzyka/yo-3nk0</link>
      <guid>https://dev.to/tyrkanzyka/yo-3nk0</guid>
      <description>&lt;p&gt;Helloooo~ &lt;br&gt;
I'm Tyrkanzyka, and I'm looking to learn how to learn. &lt;/p&gt;

&lt;p&gt;And I'm more treating this site like a passive journal anyone is free to give feedback to.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;So, I have some basic tech background, think tier 1 stuff. Very basic. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I'm learning Rust as my first language (won't lie, everyone says it's hard I was trynna be unique) either way I got...somewhat? Of a hang of it, I'm getting through it pretty slowly as it's my first language, from syntax and all.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Anyway this is more of an introductory post to my journal. I'll post some more things, try and recap what I learned. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;08.10.26&lt;br&gt;
 -Tyr&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>newbie</category>
    </item>
  </channel>
</rss>
