<?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: Anish Roy</title>
    <description>The latest articles on DEV Community by Anish Roy (@anishroy).</description>
    <link>https://dev.to/anishroy</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%2F570394%2F54b9b366-71c2-4b7e-a71d-b8fd81a4f6a1.png</url>
      <title>DEV Community: Anish Roy</title>
      <link>https://dev.to/anishroy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anishroy"/>
    <language>en</language>
    <item>
      <title>Web Development: The Month in Review - Trends, Releases, and More</title>
      <dc:creator>Anish Roy</dc:creator>
      <pubDate>Sat, 01 Jul 2023 15:00:51 +0000</pubDate>
      <link>https://dev.to/anishroy/web-development-the-month-in-review-trends-releases-and-more-2kmj</link>
      <guid>https://dev.to/anishroy/web-development-the-month-in-review-trends-releases-and-more-2kmj</guid>
      <description>&lt;p&gt;Hello, fellow developers! &lt;/p&gt;

&lt;p&gt;In this post, we'll explore some of the significant events that have occurred in the web development space over the past month and look ahead to some emerging trends.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Shift in Perspective
&lt;/h2&gt;

&lt;p&gt;Douglas Crockford, the inventor of JSON and author of the popular "JavaScript - The Good Parts," has made a surprising statement. After years of advocating for JavaScript, Douglas now believes we should stop using it. His decision comes at a time when the modern web has evolved significantly compared to 20 years ago. Despite its strengths, JavaScript, in Crockford's words, has "a lot of crap in it." &lt;/p&gt;

&lt;h2&gt;
  
  
  The Rise of Alternatives
&lt;/h2&gt;

&lt;p&gt;There are alternatives to JavaScript out there. Languages like Elm, Rust, Clojure, and ReScript are gaining traction as potential replacements for JavaScript. &lt;/p&gt;

&lt;h2&gt;
  
  
  New Releases
&lt;/h2&gt;

&lt;p&gt;Svelte 4 was announced recently, marking the framework's first major release in over four years. The focus of this version is to make the framework lighter and faster, preparing for a full rewrite of the Svelte compiler and runtime in the near future.&lt;/p&gt;

&lt;p&gt;The Million JS library is gaining popularity in the React ecosystem. It introduces a novel "block" virtual DOM, which is significantly faster than React's virtual DOM as it diffs data instead of DOM elements. &lt;/p&gt;

&lt;p&gt;Preact, one of the original React alternatives, continues to impress with its small size and better performance due to a simplified Virtual DOM.&lt;/p&gt;

&lt;h2&gt;
  
  
  StackOverflow Survey Results
&lt;/h2&gt;

&lt;p&gt;The results of the popular StackOverflow survey were released this past week. Here are some quick facts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JavaScript is still the most popular language, followed by Python and TypeScript.&lt;/li&gt;
&lt;li&gt;Postgres is the most used Database solution, with SQLite also on the podium.&lt;/li&gt;
&lt;li&gt;React still sits comfortably in first place when it comes to web frameworks.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Other Releases
&lt;/h2&gt;

&lt;p&gt;Fresh 1.2 was released this month, and the Deno team is committed to making Fresh a core part of their product offering. Ember also announced its version 5 release.&lt;/p&gt;

&lt;h2&gt;
  
  
  Go Language Update
&lt;/h2&gt;

&lt;p&gt;The Go language announced their new 1.21 version in June. This release comes packed with improved performance, standard library additions, and a couple of language changes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Looking Ahead
&lt;/h2&gt;

&lt;p&gt;Web development trends in 2023 include an emphasis on responsive design, serverless architecture, optimized voice search, dark mode standardization, and increased focus on cybersecurity. Additionally, WordPress development is expected to continue to evolve and gain popularity as an open-source, user-friendly, and versatile platform for website building and management. Progressive Web App (PWA), Artificial Intelligence, and headless CMS are other trends that are expected to grow in popularity in 2023. All these trends are expected to improve the user experience, performance, and accessibility of websites and web applications, making them more efficient, engaging, and secure.&lt;/p&gt;

&lt;p&gt;That's all for this month's roundup. Let me know in the comments if I missed any important events. &lt;/p&gt;

&lt;p&gt;If you found this post informative and want to stay updated with the latest in the web development world, don't forget to follow me. I'll be posting more roundups, as well as deep dives into specific topics in web development. &lt;/p&gt;

&lt;p&gt;Feel free to share this post with others who might find it useful. Let's continue learning and growing together in our web development journey. &lt;/p&gt;

&lt;p&gt;Until next time, happy coding!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>svelte</category>
      <category>react</category>
    </item>
    <item>
      <title>Writing meaningful HTML on the web and Why you need it?</title>
      <dc:creator>Anish Roy</dc:creator>
      <pubDate>Mon, 23 May 2022 06:20:28 +0000</pubDate>
      <link>https://dev.to/anishroy/writing-meaningful-html-on-the-web-and-why-you-need-it-2kkn</link>
      <guid>https://dev.to/anishroy/writing-meaningful-html-on-the-web-and-why-you-need-it-2kkn</guid>
      <description>&lt;p&gt;In the world of web development, the two most commonly used tags are div tags and span tags. Although they can be used for any purpose, they may not be suitable for search engines.&lt;/p&gt;

&lt;p&gt;HTML semantic tags are extensively used by search engines to extract the essence of a webpage. More information about SEO and how search engines work can be found &lt;a href="https://developers.google.com/search/docs/advanced/guidelines/get-started-developers" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Semantic HTML means HTML that includes meaning behind its elements. In other words, what is the structural significance of each piece of content on the page? Is it an article, or something that isn't the main focus of the page? Is it emphasised vocally? Is this an address or an abbreviation?&lt;/p&gt;

&lt;p&gt;At the heart of accessible websites is semantic, meaningful HTML. Indeed, leveraging all that HTML has to offer, rather than limiting yourself to plenty of divs and spans, gets you a great start on an accessible website.&lt;/p&gt;

&lt;h2&gt;
  
  
  Here are some HTML tags with semantic meaning:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;article&lt;/strong&gt; &lt;code&gt;&amp;lt;article&amp;gt;&amp;lt;/article&amp;gt;&lt;/code&gt;
represents a piece of content that exists independently of a document or website, such as a newspaper article or a blog entry.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;header&lt;/strong&gt; &lt;code&gt;&amp;lt;header&amp;gt;&amp;lt;/header&amp;gt;&lt;/code&gt;
represents introductory content, which typically includes a heading, a logo, and, on occasion, navigation links.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;footer&lt;/strong&gt; &lt;code&gt;&amp;lt;footer&amp;gt;&amp;lt;/footer&amp;gt;&lt;/code&gt;
typically found at the bottom of a webpage and contains information such as a disclaimer, links to privacy policies, social media, contact information, and a copyright statement.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So, do you know about any other semantic HTML tags?&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>tag</category>
      <category>web</category>
    </item>
    <item>
      <title>Free place to list your github repo for contribution</title>
      <dc:creator>Anish Roy</dc:creator>
      <pubDate>Wed, 15 Dec 2021 08:49:33 +0000</pubDate>
      <link>https://dev.to/anishroy/free-place-to-list-your-github-repo-for-contribution-55mo</link>
      <guid>https://dev.to/anishroy/free-place-to-list-your-github-repo-for-contribution-55mo</guid>
      <description>&lt;p&gt;Introducing open-projects, a developer friendly website to list your open source projects which need contributors.&lt;/p&gt;

&lt;p&gt;This website also helps contributors to find an interesting project to contribute.&lt;/p&gt;

&lt;p&gt;For more details check &lt;a href="https://open-projects.vercel.app" rel="noopener noreferrer"&gt;open-projects.vercel.app&lt;/a&gt; &lt;/p&gt;

</description>
      <category>github</category>
      <category>opensource</category>
      <category>contributorswanted</category>
      <category>help</category>
    </item>
  </channel>
</rss>
