<?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: hunzombi</title>
    <description>The latest articles on DEV Community by hunzombi (@hunzombi).</description>
    <link>https://dev.to/hunzombi</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%2F2346754%2Fc5cf88f9-79ff-4551-afa1-a555b06de938.png</url>
      <title>DEV Community: hunzombi</title>
      <link>https://dev.to/hunzombi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hunzombi"/>
    <language>en</language>
    <item>
      <title>Is coding on your phone worth it?</title>
      <dc:creator>hunzombi</dc:creator>
      <pubDate>Fri, 08 Nov 2024 15:14:33 +0000</pubDate>
      <link>https://dev.to/hunzombi/is-coding-on-your-phone-worth-it-1jck</link>
      <guid>https://dev.to/hunzombi/is-coding-on-your-phone-worth-it-1jck</guid>
      <description>&lt;p&gt;Im away from home for a couple of days and I don't have my &lt;strong&gt;laptop&lt;/strong&gt; with me. So I asked myself the question "Can you write code on your phone?". So I searched for an answer. I found out that you can, but &lt;strong&gt;IT'S NOT WORTH IT&lt;/strong&gt;, unless you have something really urgent.&lt;br&gt;
As you would expect typing on your phone is really slow and annoying.&lt;br&gt;
The answer to the question is that you should plan and take notes if you only have your phone and implement it when you have access to a computer.&lt;/p&gt;

</description>
      <category>android</category>
      <category>ios</category>
    </item>
    <item>
      <title>Today I learnt how to Implement SEO-Friendly Pagination with JavaScript</title>
      <dc:creator>hunzombi</dc:creator>
      <pubDate>Wed, 06 Nov 2024 20:53:00 +0000</pubDate>
      <link>https://dev.to/hunzombi/today-i-learnt-how-to-implement-seo-friendly-pagination-with-javascript-5d76</link>
      <guid>https://dev.to/hunzombi/today-i-learnt-how-to-implement-seo-friendly-pagination-with-javascript-5d76</guid>
      <description>&lt;p&gt;To make your pagination &lt;strong&gt;SEO-Friendly&lt;/strong&gt; you need to use the &lt;strong&gt;rel="prev"&lt;/strong&gt; and &lt;strong&gt;rel="next"&lt;/strong&gt; tags in the &lt;strong&gt;&amp;lt;head&amp;gt;&lt;/strong&gt; section like so&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;link rel="prev" href="#page=1"&amp;gt;
&amp;lt;link rel="next" href="#page=3"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These tags tell the search engine that a sequence of pages are connected, which can improve the SEO by helping search engines understand the the content flow and avoid indexing pages as duplicates.&lt;/p&gt;

&lt;p&gt;I made a quick demo. Use the inspect tool to see the tags in the &lt;strong&gt;&amp;lt;head&amp;gt;&lt;/strong&gt; section change as you change pages.&lt;/p&gt;

&lt;p&gt;github link: &lt;a href="https://github.com/hunzombi/SEO-FriendlyPaginationWithJavaScript" rel="noopener noreferrer"&gt;https://github.com/hunzombi/SEO-FriendlyPaginationWithJavaScript&lt;/a&gt;&lt;br&gt;
website link: &lt;a href="https://hunzombi.github.io/SEO-FriendlyPaginationWithJavaScript/" rel="noopener noreferrer"&gt;https://hunzombi.github.io/SEO-FriendlyPaginationWithJavaScript/&lt;/a&gt;;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>web</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Vue's Virtual DOM</title>
      <dc:creator>hunzombi</dc:creator>
      <pubDate>Tue, 05 Nov 2024 18:38:37 +0000</pubDate>
      <link>https://dev.to/hunzombi/vues-virtual-dom-475i</link>
      <guid>https://dev.to/hunzombi/vues-virtual-dom-475i</guid>
      <description>&lt;p&gt;Vue's &lt;strong&gt;Virtual DOM&lt;/strong&gt; enables you applications to be scaled easily. It enables efficient communication with the &lt;strong&gt;DOM&lt;/strong&gt;. It simplifies UI state management by serving as a predictable intermediary.&lt;br&gt;
The &lt;strong&gt;Virtual DOM&lt;/strong&gt; minimizes direct &lt;strong&gt;DOM&lt;/strong&gt; interactions. The &lt;strong&gt;VDOM&lt;/strong&gt; calculates the difference between UI states before applying them, due to this only parts that need change are updated. The &lt;strong&gt;VDOM&lt;/strong&gt; can also batch chages to prevent performance bottlenecks where if the changes were uploaded in succession as each of the chages can force a reflow or repaint.&lt;br&gt;
The &lt;strong&gt;VDOM&lt;/strong&gt; also optimizes re-rendering by removing lag or stuttering.&lt;/p&gt;

&lt;p&gt;I keep learning everyday :)&lt;/p&gt;

</description>
      <category>vue</category>
      <category>webdev</category>
      <category>web</category>
    </item>
    <item>
      <title>Just learnt about Vue.js</title>
      <dc:creator>hunzombi</dc:creator>
      <pubDate>Mon, 04 Nov 2024 20:53:35 +0000</pubDate>
      <link>https://dev.to/hunzombi/just-learnt-about-vuejs-33d2</link>
      <guid>https://dev.to/hunzombi/just-learnt-about-vuejs-33d2</guid>
      <description>&lt;p&gt;I learnt about &lt;strong&gt;Vue.js&lt;/strong&gt; an amazing framework to make development much easier and faster. You can create &lt;strong&gt;Components&lt;/strong&gt; that you can add to the &lt;em&gt;DOM&lt;/em&gt;.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgdt67u08asynstr2ff8g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgdt67u08asynstr2ff8g.png" alt="Vue.js Logo" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Vue.js&lt;/strong&gt; is amazing for making &lt;em&gt;Single Page Applications.&lt;/em&gt; It make integrating logic much easier.&lt;br&gt;
I made a quick incremental game while learning &lt;strong&gt;Vue.js&lt;/strong&gt;, note that the game is only for showing what I made with &lt;strong&gt;Vue.js&lt;/strong&gt; to explore it.&lt;br&gt;
Here is the github repo of the game:&lt;br&gt;
&lt;a href="https://github.com/hunzombi/SimpleIncremental" rel="noopener noreferrer"&gt;https://github.com/hunzombi/SimpleIncremental&lt;/a&gt;&lt;br&gt;
You can play it using this link:&lt;br&gt;
&lt;a href="https://hunzombi.github.io/SimpleIncremental/" rel="noopener noreferrer"&gt;https://hunzombi.github.io/SimpleIncremental/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vue</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>frontend</category>
    </item>
  </channel>
</rss>
