<?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: coderwatchHQ</title>
    <description>The latest articles on DEV Community by coderwatchHQ (@coderwatch).</description>
    <link>https://dev.to/coderwatch</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%2F673011%2F1046dbe9-e4df-4ed4-910d-def8d9ad28ad.png</url>
      <title>DEV Community: coderwatchHQ</title>
      <link>https://dev.to/coderwatch</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/coderwatch"/>
    <language>en</language>
    <item>
      <title>🌟20 Amazing JavaScript shorthands for ultimate productivity in 2021</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Wed, 04 Aug 2021 04:11:54 +0000</pubDate>
      <link>https://dev.to/coderwatch/20-amazing-javascript-shorthands-for-ultimate-productivity-in-2021-lme</link>
      <guid>https://dev.to/coderwatch/20-amazing-javascript-shorthands-for-ultimate-productivity-in-2021-lme</guid>
      <description>&lt;p&gt;Saving time is the necessary thing for developers when working on projects. I am sharing 20 JavaScript shorthands which you can use to save you time while coding. &lt;/p&gt;




&lt;h3&gt;
  
  
  Declaring variables
&lt;/h3&gt;

&lt;p&gt;You can easily declare/define multiple variables on one line.&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="c1"&gt;//Long version  &lt;/span&gt;
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;b&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; 

&lt;span class="c1"&gt;//Shorthand  &lt;/span&gt;
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;b&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Assigning values to multiple variables
&lt;/h3&gt;

&lt;p&gt;You can assign values to multiple variables with array destructuring.&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="c1"&gt;//Long version  &lt;/span&gt;
&lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="nx"&gt;y&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="nx"&gt;z&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; 

&lt;span class="c1"&gt;//Shorthand  &lt;/span&gt;
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;y&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;z&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;   
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Assigning default value
&lt;/h3&gt;

&lt;p&gt;You can set default values with the &lt;code&gt;|| (OR)&lt;/code&gt; operator. If the value onn the left side is falsy it will use the one on the right.&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="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;finalName&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;getName&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;name&lt;/span&gt; &lt;span class="o"&gt;!==&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nx"&gt;name&lt;/span&gt; &lt;span class="o"&gt;!==&lt;/span&gt; &lt;span class="kc"&gt;undefined&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nx"&gt;name&lt;/span&gt; &lt;span class="o"&gt;!==&lt;/span&gt; &lt;span class="dl"&gt;''&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;  
    &lt;span class="nx"&gt;finalName&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;name&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;else&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;  
    &lt;span class="nx"&gt;finalName&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Rahul&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;  
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="c1"&gt;// Shorthand  &lt;/span&gt;
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;finalName&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;getName&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;||&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Rahul&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;h3&gt;
  
  
  The ternary operator
&lt;/h3&gt;

&lt;p&gt;You can write &lt;em&gt;if else&lt;/em&gt; statements in one line using the ternary (&lt;code&gt;?:&lt;/code&gt;) operator.&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="c1"&gt;//Long version  &lt;/span&gt;
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;points&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;70&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;result&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;marks&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;=&lt;/span&gt; &lt;span class="mi"&gt;50&lt;/span&gt;&lt;span class="p"&gt;){&lt;/span&gt;  
    &lt;span class="nx"&gt;result&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Pass&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;  
    &lt;span class="nx"&gt;result&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Fail&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="c1"&gt;//Shorthand  &lt;/span&gt;
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;points&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;70&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;result&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;marks&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;=&lt;/span&gt; &lt;span class="mi"&gt;50&lt;/span&gt; &lt;span class="p"&gt;?&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Pass&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Fail&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;h3&gt;
  
  
  Template Literals
&lt;/h3&gt;

&lt;p&gt;Instead os using the + operator to concatenate strings we can use ES6 template literals.&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="c1"&gt;// Long version  &lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Hello &lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;name&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;, it is &lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;day&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt; 

&lt;span class="c1"&gt;//Shorthand  &lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`Hello &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;name&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;, it is &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;day&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;   
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Swap two variables
&lt;/h3&gt;

&lt;p&gt;With arraw destructuring you can swap two variables without using a third one.&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="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;y&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="c1"&gt;//Long version  &lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;temp&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;y&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="nx"&gt;y&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;temp&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; 

&lt;span class="c1"&gt;//Shorthand  &lt;/span&gt;
&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;y&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;y&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;  
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  AND(&amp;amp;&amp;amp;) Short circuit evaluation
&lt;/h3&gt;

&lt;p&gt;You can use the &lt;code&gt;&amp;amp;&amp;amp;&lt;/code&gt; operator if you want to execute a function if a variable is true.&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="c1"&gt;// Long version  &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;isLoggedin&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;   
    &lt;span class="nx"&gt;redirectToHomepage&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;   
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="c1"&gt;//Shorthand  &lt;/span&gt;
&lt;span class="nx"&gt;isLoggedin&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nx"&gt;redirectToHomepage&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;   
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Arrow function
&lt;/h3&gt;

&lt;p&gt;You can write shorter functions using the arrow function syntax.&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="c1"&gt;//Long version  &lt;/span&gt;
&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nx"&gt;add&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;a&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;b&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;  
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;b&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="c1"&gt;// Shorthand  &lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;add&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;a&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;b&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;b&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;   
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Multi-line string
&lt;/h3&gt;

&lt;p&gt;For multiline string instead of using + operator with a new line ecape sequence (\n). We can use usebackticks(``). &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
// Long version&lt;br&gt;&lt;br&gt;
console.log('A blog is a discussion or informational website published\n' + 'on the World Wide Web consisting of discrete, often informal diary-style text entries. Posts are typically\n' + 'displayed in reverse chronological order, so that the most recent post\n' + 'appears first, at the top of the web page. Until 2009,\n' + 'blogs were usually the work of a single' ); &lt;/p&gt;

&lt;p&gt;//Shorthand&lt;br&gt;&lt;br&gt;
console.log(&lt;code&gt;A blog is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text entries . Posts are typically displayed in reverse chronological order, so that the most recent post appears first, at the top of the web page. Until 2009, blogs were usually the work of a single&lt;/code&gt;);&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;h3&gt;
  
  
  Multiple condition checking
&lt;/h3&gt;

&lt;p&gt;When checking for multiple values, we can pull all values in an array and use &lt;code&gt;indexOf()&lt;/code&gt; / &lt;code&gt;includes()&lt;/code&gt; method. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
//Long version&lt;br&gt;&lt;br&gt;
if (value === 1 || value === 'one' || value === 2 || value === 'two') {&lt;br&gt;&lt;br&gt;
    //Execute code&lt;br&gt;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;//Shorthand 1&lt;br&gt;&lt;br&gt;
if ([1, 'one', 2, 'two'].indexOf(value) &amp;gt;= 0) {&lt;br&gt;&lt;br&gt;
    //Execute code&lt;br&gt;&lt;br&gt;
}&lt;br&gt;&lt;br&gt;
//Shorthand 2&lt;br&gt;&lt;br&gt;
if ([1, 'one', 2, 'two'].includes(value)) {&lt;br&gt;&lt;br&gt;
    //Execute code&lt;br&gt;&lt;br&gt;
}&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;h3&gt;
  
  
  String into a number
&lt;/h3&gt;

&lt;p&gt;You can convert a string to a number by writing a + operator before the string. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
// Long version&lt;br&gt;&lt;br&gt;
let total = parseInt('45');&lt;br&gt;&lt;br&gt;
let average = parseFloat('421.6'); &lt;/p&gt;

&lt;p&gt;//Shorthand&lt;br&gt;&lt;br&gt;
let total = +'45';&lt;br&gt;&lt;br&gt;
let average = +'421.6';&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;h3&gt;
  
  
  Object property Assignment
&lt;/h3&gt;

&lt;p&gt;If the variable name and object key name is the same, then we can just mention variable name in object literals instead of both key and value. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
let firstname = 'Emma';&lt;br&gt;&lt;br&gt;
let lastname = 'Turner';&lt;br&gt;&lt;br&gt;
//Long version&lt;br&gt;&lt;br&gt;
let obj = {firstname: firstname, lastname: lastname}; &lt;/p&gt;

&lt;p&gt;//shorthand&lt;br&gt;&lt;br&gt;
let obj = {firstname, lastname};&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`   &lt;/p&gt;

&lt;h3&gt;
  
  
  Find max and min numbe rin array
&lt;/h3&gt;

&lt;p&gt;Instead of writing  a for loop you cna use the spread operator of &lt;code&gt;Array.reduce()&lt;/code&gt;. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;`javascript  &lt;br&gt;
// Shorthand  &lt;br&gt;
const arr = [2, 8, 15, 4];   &lt;br&gt;
Math.max(...arr); // 15  &lt;br&gt;
Math.min(...arr); // 2  &lt;br&gt;
`&lt;/code&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Exponent Power
&lt;/h3&gt;

&lt;p&gt;Instead of &lt;code&gt;Math.pow()&lt;/code&gt; we can use ** to find the power of a number. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
//Long version&lt;br&gt;&lt;br&gt;
const power = Math.pow(4, 3); // 64&lt;/p&gt;

&lt;p&gt;//Shorthand&lt;br&gt;&lt;br&gt;
const power = 4**3; // 64&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;h3&gt;
  
  
  Doouble NOT bitwise operator
&lt;/h3&gt;

&lt;p&gt;You can use the &lt;code&gt;~~&lt;/code&gt; instead of &lt;code&gt;Math.floor()&lt;/code&gt;. Only works for 32-bit numbers, so use it wisely. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
//Long version&lt;br&gt;&lt;br&gt;
const floor = Math.floor(4.8); // 4&lt;/p&gt;

&lt;p&gt;//Shorthand&lt;br&gt;&lt;br&gt;
const floor = ~~4.8; // 4&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;h3&gt;
  
  
  Repeat a string multiple time
&lt;/h3&gt;

&lt;p&gt;Instead of a &lt;em&gt;for loop&lt;/em&gt; you can use the &lt;code&gt;repeat()&lt;/code&gt; stringmethod to repeat a string. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
//Long version&lt;br&gt;&lt;br&gt;
let str = '';&lt;br&gt;&lt;br&gt;
for(let i = 0; i &amp;lt; 5; i ++) {&lt;br&gt;&lt;br&gt;
    str += 'Hello ';&lt;br&gt;&lt;br&gt;
}&lt;br&gt;&lt;br&gt;
console.log(str); // Hello Hello Hello Hello Hello &lt;/p&gt;

&lt;p&gt;//Shorthand&lt;br&gt;&lt;br&gt;
'Hello '.repeat(5);&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;h3&gt;
  
  
  For loop
&lt;/h3&gt;

&lt;p&gt;We can use the &lt;strong&gt;for of&lt;/strong&gt; or &lt;strong&gt;for in&lt;/strong&gt; instead of a for loop. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;`javascript  &lt;br&gt;
let arr = [1, 2, 3, 4];   &lt;br&gt;
//Long version  &lt;br&gt;
for (let i = 0; 1 &amp;lt; arr.length; i++) {  &lt;br&gt;
    console.log(arr[i]);   &lt;br&gt;
}  &lt;br&gt;
//Shorthand  &lt;br&gt;
//for of loop  &lt;br&gt;
for (const val of arr) {  &lt;br&gt;
    console.log(val);   &lt;br&gt;
}  &lt;br&gt;
//for in loop  &lt;br&gt;
for (const index in arr) {  &lt;br&gt;
    console.log(arr[index]);  &lt;br&gt;
}  &lt;br&gt;
`&lt;/code&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Deep clong of multi-level object
&lt;/h3&gt;

&lt;p&gt;It won't work when you have functions as values, but otherwise feel free to use it. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
let obj = {x: 20, y: {z: 30}}; &lt;/p&gt;

&lt;p&gt;//long version&lt;br&gt;&lt;br&gt;
const makeDeepClone = (obj) =&amp;gt; {&lt;br&gt;&lt;br&gt;
    let newObject = {};&lt;br&gt;&lt;br&gt;
    Object.keys(obj).map(key =&amp;gt; {&lt;br&gt;&lt;br&gt;
        if(typeof obj[key] === 'object'){&lt;br&gt;&lt;br&gt;
            newObject[key] = make DeepClone(obj[key]);&lt;br&gt;&lt;br&gt;
        } else {&lt;br&gt;&lt;br&gt;
            newObject[key] = obj[key];&lt;br&gt;&lt;br&gt;
        }&lt;br&gt;&lt;br&gt;
    });&lt;br&gt;&lt;br&gt;
    return neObject;&lt;br&gt;&lt;br&gt;
}&lt;br&gt;&lt;br&gt;
const cloneObj = makeDeepClone(obj); &lt;/p&gt;

&lt;p&gt;//Shorthand&lt;br&gt;&lt;br&gt;
const cloneObj = JSON.parse(JSON.stringify(obj));&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;h3&gt;
  
  
  Get character from string
&lt;/h3&gt;

&lt;p&gt;You can use &lt;code&gt;[]&lt;/code&gt; operator to get a character from a string. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
let str = 'heelloworld';&lt;br&gt;&lt;br&gt;
//Long version&lt;br&gt;&lt;br&gt;
str.charAt(1); // e&lt;/p&gt;

&lt;p&gt;//Shorthand&lt;br&gt;&lt;br&gt;
str[1]; // e&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;

&lt;h3&gt;
  
  
  Merging arrays
&lt;/h3&gt;

&lt;p&gt;Instead of using &lt;code&gt;Array.concat()&lt;/code&gt; we can use the rest operator to merge arrays. &lt;/p&gt;

&lt;p&gt;`&lt;code&gt;&lt;/code&gt;javascript&lt;br&gt;&lt;br&gt;
let arr1 = [2, 3];&lt;br&gt;&lt;br&gt;
//Long version&lt;br&gt;&lt;br&gt;
let arr2 = arr1.concat([4, 5]);&lt;br&gt;&lt;br&gt;
// [2, 3, 4, 5]&lt;/p&gt;

&lt;p&gt;// Shorthand&lt;br&gt;&lt;br&gt;
let arr2 = [...arr1, 4, 5];&lt;br&gt;&lt;br&gt;
// [2, 3, 4, 5]&lt;br&gt;&lt;br&gt;
&lt;code&gt;&lt;/code&gt;`&lt;/p&gt;




&lt;p&gt;Thanks for seeing this post if you found helpful let me know in the comments. &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>60+ Awesome UI and UX resources for Developers and Designers 2021</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Tue, 03 Aug 2021 04:51:00 +0000</pubDate>
      <link>https://dev.to/coderwatch/60-awesome-ui-and-ux-resources-for-developers-and-designers-2021-202</link>
      <guid>https://dev.to/coderwatch/60-awesome-ui-and-ux-resources-for-developers-and-designers-2021-202</guid>
      <description>&lt;p&gt;Yearning organizers, genuine solopreneurs, and sprouting visual creators all need a convincing proficient brand — or if nothing else the abilities and assets expected to foster one. &lt;/p&gt;

&lt;p&gt;Tragically, in case you're new to the visual communication world, this implies swimming through a confounding cluster of picture altering programming, stock picture locales, plan administrations, and considerably more. &lt;/p&gt;

&lt;p&gt;To save you time, we've accumulated the best visual communication assets to help you construct a bespoke brand that separates you from your rivals. &lt;/p&gt;

&lt;p&gt;Regardless of whether you're an originator searching for better visual communication apparatuses or an entrepreneur searching for practical programming, you'll track down the best paid and free visual UI and UX assets.&lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://www.creativefabrica.com/" rel="noopener noreferrer"&gt;Creative Fabrica&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.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%2Fjp2en7ep1wv0upyngu5p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fjp2en7ep1wv0upyngu5p.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Get access to the ever growing library of fonts, graphics, crafts and more. 1million+  unique premium designs. &lt;a href="https://www.creativefabrica.com/" rel="noopener noreferrer"&gt;Creative Fabrica&lt;/a&gt; is an Amsterdam based company providing the digital consumers with their very huge amounts of resources. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://motionplaces.com" rel="noopener noreferrer"&gt;Motion Places&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451377249%2Fx_PU5_3dM.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451377249%2Fx_PU5_3dM.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free Stock Video Footage by Motion Places. They offer a curated collection of beautiful footage you can use for your projects. Download our clips for free in HD quality, or purchase 4K clips for $99.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://fontjoy.com" rel="noopener noreferrer"&gt;Fontjoy&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451406457%2FkOqG39BLu.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451406457%2FkOqG39BLu.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Fontjoy helps designers choose the best font combinations. Mix and match different fonts for the perfect pairing.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://coolfonts.cool/" rel="noopener noreferrer"&gt;Cool Fonts&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1628229498064%2F99OzAsZtb.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1628229498064%2F99OzAsZtb.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Cool fonts generator—Copy and paste text fonts for your Instagram, WhatsApp, Twitter &amp;amp; Facebook ⚡ ❤️ Cool letters, symbols, copy and paste easily.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://shotsnapp.com" rel="noopener noreferrer"&gt;Shotsnapp&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451636111%2FcQGLNWMaS.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451636111%2FcQGLNWMaS.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create beautiful device mockup image from the screenshots or design of your mobile app and websites. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://remixicon.com" rel="noopener noreferrer"&gt;Remix&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451653393%2FnNtEQyMOV.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451653393%2FnNtEQyMOV.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Remix Icon is a set of open source neutral style system symbols elaborately crafted for designers and developers. All of the icons are free to use for both personal and commercial.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://fontchanger.top/" rel="noopener noreferrer"&gt;Font changer&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1628229451213%2Fo6UluFJds.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1628229451213%2Fo6UluFJds.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Font changer— 😍💛 Cool &amp;amp; stylish text fonts for your Instagram, Facebook &amp;amp; Twitter. Easily copy and paste the fancy text.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://whocanuse.com" rel="noopener noreferrer"&gt;Who can use&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451679562%2FNr40O437T.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451679562%2FNr40O437T.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Find out who can use your color combination. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://colorsafe.co" rel="noopener noreferrer"&gt;ColorSafe&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451730362%2FiIdq1X4id.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451730362%2FiIdq1X4id.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Empowering designers with beautiful and accessible color palettes based on WCAG Guidelines of text and background contrast ratios.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://vexels.com" rel="noopener noreferrer"&gt;Vexels&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451779458%2FglEW6Lxph.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451779458%2FglEW6Lxph.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Graphic Resources for Commercial &amp;amp; Merch Use ✓ Vector image illustrations, logos, design templates &amp;amp; more ✓ T-Shirt Designs &amp;amp; other Merch  ✓ PNG, AI, SVG, JPG, PDF&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.opendoodles.com/" rel="noopener noreferrer"&gt;Open Doodles&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451946734%2FrVR7pITib.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451946734%2FrVR7pITib.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A library of sketchy illustrations of people free for personal and commercial use.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://videvo.net/stock-video-footage" rel="noopener noreferrer"&gt;Videvo&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451902562%2FBswj7KhFD.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451902562%2FBswj7KhFD.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Download free stock video footage with 4k and HD clips available. Click here to download royalty-free licensing videos from Videvo today.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://inkscape.org" rel="noopener noreferrer"&gt;Inkscape&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451965475%2FxuvRK5B3-.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451965475%2FxuvRK5B3-.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Inkscape is professional quality vector graphics software which runs on Linux, Mac OS X and Windows desktop computers.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://ionicons.com" rel="noopener noreferrer"&gt;Ionicons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451985394%2FV-F9Hl7ya.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627451985394%2FV-F9Hl7ya.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ionicons is an open-sourced and MIT licensed icon pack.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://drawkit.io" rel="noopener noreferrer"&gt;DrawKit&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452009870%2FwBUAbFxCQ.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452009870%2FwBUAbFxCQ.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free and premium vector SVG illustrations for you to use on your next project, no attribution required! Vector illustrations, packs, icons and more.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.dafont.com/" rel="noopener noreferrer"&gt;DaFonts&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452038293%2FpixE8Y97Gq.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452038293%2FpixE8Y97Gq.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Archive of freely downloadable fonts. Browse by alphabetical listing, by style, by author or by popularity.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://thenounproject.com" rel="noopener noreferrer"&gt;The Noun Project&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452078802%2FH3XiJ9xaV7.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452078802%2FH3XiJ9xaV7.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Noun Project features the most diverse collection of icons and stock photos ever. Download SVG and PNG. Browse over 3 million art-quality icons and photos.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://freepik.com" rel="noopener noreferrer"&gt;Freepik&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454940060%2FpPvuJ1GIWD.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454940060%2FpPvuJ1GIWD.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Millions of Free Graphic Resources. ✓ Vectors ✓ Stock Photos ✓ PSD ✓ Icons ✓ All that you need for your Creative Projects&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://designer.io" rel="noopener noreferrer"&gt;Gravit Designer&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452190848%2F3mn8nHscJ.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452190848%2F3mn8nHscJ.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create graphics, design logos and icons, edit images illustrations &amp;amp; presentations, all for free. Online professional vector graphic design tool - Gravit Designer&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://burst.shopify.com" rel="noopener noreferrer"&gt;Burst&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452627094%2FXMVsUUAGw.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452627094%2FXMVsUUAGw.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Browse thousands of beautiful copyright-free images. All our pictures are free to download for personal and commercial use, no attribution required.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://mrmockup.com/freebies/" rel="noopener noreferrer"&gt;MrMockUp&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452712840%2FpgfsDMqan.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452712840%2FpgfsDMqan.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free design freebies you need should check out&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://material.io/icons" rel="noopener noreferrer"&gt;Material Icons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452772064%2F3mu8eHhui.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452772064%2F3mu8eHhui.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Build beautiful, usable products faster. Material Design is an adaptable system—backed by open-source code—that helps teams build high quality digital experiences.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://scrnshts.club" rel="noopener noreferrer"&gt;Scrnshts&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452874633%2FwZPiOAjKQ.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627452874633%2FwZPiOAjKQ.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A hand-picked collection of the finest app store design screenshots&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://screenpeek.io" rel="noopener noreferrer"&gt;Screenpeek&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453079525%2FUs7meIgdd.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453079525%2FUs7meIgdd.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Screenpeek captures any website within a high quality mockup in seconds.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://isometric.online" rel="noopener noreferrer"&gt;Isometric&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453103417%2FDP-ccmGtC.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453103417%2FDP-ccmGtC.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free vector isometric illustrations for designers, startups and companies without the need to include attribution&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://humaaans.com" rel="noopener noreferrer"&gt;Humaaans&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453182648%2FNIkauY3MT.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453182648%2FNIkauY3MT.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Mix-&amp;amp;-match illustrations of people with a design library for InVIsion Studio and Sketch.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://shape.so" rel="noopener noreferrer"&gt;Shape&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453157179%2FqQWHkrkPq.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453157179%2FqQWHkrkPq.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Shape lets you customize the style, colors and border of static &amp;amp; animated icons and illustrations. You can export to React, SVG and Lottie code.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://landingstock.com" rel="noopener noreferrer"&gt;Landing Stock&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453195504%2FHNTY03PkS.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453195504%2FHNTY03PkS.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Discover your perfect landing page in with LandingStock, a collection of free images for landing pages.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://happyhues.co" rel="noopener noreferrer"&gt;Happy Hues&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453220019%2FW_LY80wqA.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453220019%2FW_LY80wqA.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See color palette inspiration on a real example website. As you click on different palettes every color on this site updates to give you context of how that color could be used for your design or illustration projects.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://flaticon.com" rel="noopener noreferrer"&gt;Flaticon&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453238093%2FC7ASTLtkC.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453238093%2FC7ASTLtkC.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Download Free Vector Icons and Stickers for your projects. Resources made by and for designers. PNG, SVG, EPS, PSD and CSS formats&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://joeschmoe.io" rel="noopener noreferrer"&gt;Joe Schmoe&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453294400%2FNVuTCL8by.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453294400%2FNVuTCL8by.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An illustrated avatar generator for developers and designers.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://lukaszadam.com" rel="noopener noreferrer"&gt;Lukasz Adam Free Illustrations&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453314390%2FrmH9jPmU4.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453314390%2FrmH9jPmU4.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hey! Looking for the free Illustration guys? That's me. Check out my illustrations and my other resources.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://principleformac.com" rel="noopener noreferrer"&gt;Principle&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453402497%2FRdhzJpQ2n.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453402497%2FRdhzJpQ2n.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Principle makes it easy to design animated and interactive user interfaces. Whether you're designing the flow of a multi-screen app, or new interactions and animations, Principle helps you create designs that look and feel amazing.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://mockupworld.co" rel="noopener noreferrer"&gt;Mockup World&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453423748%2FrhAbMynM9.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453423748%2FrhAbMynM9.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tons of free and legal, fully layered, easily customizable photo realistic PSD mockups: Ready to use in your projects, app showcases and presentations!&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://httpster.net" rel="noopener noreferrer"&gt;Httpster&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453550047%2F4m3CGL9V9.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453550047%2F4m3CGL9V9.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tons of free and legal, fully layered, easily customizable photo realistic PSD mockups: Ready to use in your projects, app showcases and presentations!&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://animaticons.co" rel="noopener noreferrer"&gt;Animaticons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453528086%2FgwN2gyMN3.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453528086%2FgwN2gyMN3.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Animaticons are a growing set of beautiful, high-resolution, animated GIF icons that you can customize. They are perfect for websites, emails, presentations and more&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://socialsizes.io" rel="noopener noreferrer"&gt;Social Sizes&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453491952%2FGyG6Zt-ER.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453491952%2FGyG6Zt-ER.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;SocialSizes provides designers with the best sizes to use for Image and Video content on Social Media. Get downloadable templates for Sketch, Figma, Photoshop and Adobe XD (no more googling for everything).&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://screenlane.com" rel="noopener noreferrer"&gt;ScreeenLane&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453574613%2Fa2V-WSBTj.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453574613%2Fa2V-WSBTj.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Get inspired and keep up with the latest web &amp;amp; mobile app UI design trends. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://checklist.design" rel="noopener noreferrer"&gt;Checklist&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453680956%2FDDhLiVbLN.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453680956%2FDDhLiVbLN.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Checklist Design is a curated list of checklists ranging from website pages, to UI components, all the way to branding assets.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://fontsquirrel.com" rel="noopener noreferrer"&gt;Fonts Squirrel&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453709053%2Fm1Ke2qQ2L.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453709053%2Fm1Ke2qQ2L.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Font Squirrel scours the internet for high quality, legitimately free fonts . Download thousands of completely legal, high quality, free fonts.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://typewolf.com" rel="noopener noreferrer"&gt;Typewolf&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453740814%2FHOMwMd4wv.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453740814%2FHOMwMd4wv.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Typewolf helps designers choose the perfect font combination for their next design project—features web fonts in the wild, font recommendations and learning resources.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://humanebydesign.com" rel="noopener noreferrer"&gt;Humane&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453804321%2Fq0eignVmP.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453804321%2Fq0eignVmP.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A resource that provides guidance for designing ethically humane digital products through patterns focused on user well-being.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://mixkit.co" rel="noopener noreferrer"&gt;Mixkit&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453780870%2F1x-T4WXJN.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453780870%2F1x-T4WXJN.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Download Free Stock Video Footage, Stock Music &amp;amp; Premiere Pro Templates for your next video editing project. All assets can be downloaded for free!&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://rawpixels.com" rel="noopener noreferrer"&gt;Rawpixel&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455811070%2FLnbSgz8Ml.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455811070%2FLnbSgz8Ml.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Rawpixels is a portfolio of design work by Bill Safsel.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://losttype.com" rel="noopener noreferrer"&gt;Lost Type&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453959026%2F9ykX8pbXP.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453959026%2F9ykX8pbXP.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lost Type is a Collaborative Digital Type Foundry.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://craftwork.design" rel="noopener noreferrer"&gt;Craftwork&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453995077%2Fljz6i8dxt.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627453995077%2Fljz6i8dxt.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Interface assets for designers, developers, and startup creatives. Speed up your design workflow with high-quality UX/UI kits, illustrations, and templates.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://feathericons.com" rel="noopener noreferrer"&gt;Feather Icons&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454012171%2FqN49qsl99.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454012171%2FqN49qsl99.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feather is a collection of simply beautiful open source icons. Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency and readability.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://vanschneider.com/colors" rel="noopener noreferrer"&gt;Color Claim&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454125586%2FbAF6jxmkc.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454125586%2FbAF6jxmkc.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ColorClaim is simple. Everything and amazing favorite color combinations on one big page&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://coverr.co" rel="noopener noreferrer"&gt;Coverr&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454159279%2FGaa1v0Quv.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454159279%2FGaa1v0Quv.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Download royalty free (for personal and commercial use), unique and beautiful video footage for your website or any project. No attribution required.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://pixeden.com" rel="noopener noreferrer"&gt;Pixeden&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454205830%2FN1OAZ_Bab.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454205830%2FN1OAZ_Bab.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Pixeden is hard at work providing quality premium and free web resources and graphic design templates. Enjoy!&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://sketchsheets.com" rel="noopener noreferrer"&gt;Sketchsheets&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454228547%2FN4EP1CyCF.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454228547%2FN4EP1CyCF.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sketchsheets is an open source project dedicated to providing free printable templates of the latest devices and platforms for wireframing designs.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://rightfontapp.com" rel="noopener noreferrer"&gt;Right Font&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454298954%2FfWXVMyCrc.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454298954%2FfWXVMyCrc.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Professional and beautiful font manager and font organizer app, helps preview, sync, install and organize fonts over iCloud, Dropbox. All-in-one Font Manager for business.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://colorspark.app" rel="noopener noreferrer"&gt;ColorsSpark&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454324105%2F3lw5kmMO-.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454324105%2F3lw5kmMO-.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Professional and beautiful font manager and font organizer app, helps preview, sync, install and organize fonts over iCloud, Dropbox. All-in-one Font Manager for business.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://useflowkit.com" rel="noopener noreferrer"&gt;Flowkit&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454439881%2Fx847v5i1t.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454439881%2Fx847v5i1t.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;User flows right inside your favorite design tool. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://land-book.com" rel="noopener noreferrer"&gt;Landbook&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454468760%2FIA0wYeQlU.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454468760%2FIA0wYeQlU.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Design gallery with the best and most carefully collected websites. We help creatives find inspiration &amp;amp; motivation to do rad stuff.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://colorsinspo.com" rel="noopener noreferrer"&gt;Colorsinspo&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454634203%2FMXqKanBTHu.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454634203%2FMXqKanBTHu.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Colorsinspo is all in one resource to find everything about colors with extreme ease. Also, you will get Freebies, Inspirations, Color Tools, Gradients and thousands of trendy hand-picked color palettes.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://maze.design" rel="noopener noreferrer"&gt;Maze&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454607504%2FSZvukG4y7.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454607504%2FSZvukG4y7.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Get user feedback with Maze's remote testing platform. Power your product and marketing team with quantifiable insights you can act on, instantly.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://saaspages.xyz/" rel="noopener noreferrer"&gt;SaaSPages&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454763690%2FMWOO97osl.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627454763690%2FMWOO97osl.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A collection of the best landing pages with a focus on copywriting and design.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.foodiesfeed.com/" rel="noopener noreferrer"&gt;Foodies Food&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627456305630%2FURCS8I2ZH.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627456305630%2FURCS8I2ZH.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Find food images uploaded by Food Bloggers. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://removal.ai" rel="noopener noreferrer"&gt;RemovalAI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455161262%2F0NgDe7Yzi.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455161262%2F0NgDe7Yzi.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Remove Image Background Free Using Artificial Intelligence &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="http://snappy-app.com/" rel="noopener noreferrer"&gt;Snapshots&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455266385%2FKLq8lFJTQ.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455266385%2FKLq8lFJTQ.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Snapshots, the smart way.&lt;/p&gt;

&lt;p&gt;Your day-to-day App to instantly work and collaborate on snapshots. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://app.streamlinehq.com/emojis/freebies-freemojis" rel="noopener noreferrer"&gt;Streamline Emojis&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455002333%2F3pch8vltm.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455002333%2F3pch8vltm.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A cute vector emoji set that you can use for free in your applications, websites or publications. Use the vectors for free but you must credit us with a link.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://morguefile.com" rel="noopener noreferrer"&gt;MorgueFile&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455486690%2F1CHSK6gFJ3.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455486690%2F1CHSK6gFJ3.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free images for creatives, by creatives. A post production file, over 400,000 free stock photos for commercial use.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://nos.twnsnd.co/" rel="noopener noreferrer"&gt;New Old Stock&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455049642%2FpRUO0F_MP.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627455049642%2FpRUO0F_MP.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Vintage photos from the public archives.&lt;br&gt;
Free of known copyright restrictions.&lt;br&gt;
Recapturing History.&lt;/p&gt;




&lt;p&gt;Best of luck utilizing these free assets on your future visual communication projects!&lt;/p&gt;

&lt;p&gt;Mainly we would give the credits to the people making these resources and we're very proud promiting them all on our channels. If you are looking to add your amazing resource into this list just comment down below, we'll help you.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
      <category>resources</category>
    </item>
    <item>
      <title>13 Cool looking programming Fonts in 2021</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Mon, 02 Aug 2021 05:50:23 +0000</pubDate>
      <link>https://dev.to/coderwatch/13-cool-looking-programming-fonts-in-2021-1c00</link>
      <guid>https://dev.to/coderwatch/13-cool-looking-programming-fonts-in-2021-1c00</guid>
      <description>&lt;p&gt;We go through the whole day utilizing code editors, terminal emulators, and other designer apparatuses. Utilizing a textual style that feels great to your eyes can have an enormous effect and work on your usefulness. &lt;/p&gt;

&lt;p&gt;Here's a gathering of the best free monospace textual styles for coding, alongside extra remarks and download joins. &lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://github.com/larsenwork/monoid" rel="noopener noreferrer"&gt;Monoid&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627624909599%2FhtVD3J6Zc.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627624909599%2FhtVD3J6Zc.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Customisable coding font with alternates, ligatures and contextual positioning&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://damieng.com/blog/2007/11/14/droid-sans-mono-great-coding-font" rel="noopener noreferrer"&gt;Droid Sans MONO&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627624943350%2FUXqm2xexh.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627624943350%2FUXqm2xexh.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://fontmeme.com/fonts/press-start-2p-font/" rel="noopener noreferrer"&gt;Press Start 2P&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625004645%2FsNKzUykMI.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625004645%2FsNKzUykMI.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/adobe-fonts/source-code-pro" rel="noopener noreferrer"&gt;Source Code Pro&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625073300%2FxSLv78a0vK.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625073300%2FxSLv78a0vK.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Monospaced font family for user interface and coding environments &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.jetbrains.com/lp/mono/" rel="noopener noreferrer"&gt;JetBrains Mono&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625112141%2F2PWC0-5Gc.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625112141%2F2PWC0-5Gc.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An amazing free and open source typeface for developers. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/source-foundry/Hack" rel="noopener noreferrer"&gt;Hack&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625236358%2FigvFghzlY.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625236358%2FigvFghzlY.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A typeface designed for source code &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.monolisa.dev/" rel="noopener noreferrer"&gt;MonaLisa&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625256034%2FdkPWn848v.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625256034%2FdkPWn848v.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A font family designed for software developers. Font follows function.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://dank.sh/" rel="noopener noreferrer"&gt;Dank Mono&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625522176%2FPWbeYu8Qb.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625522176%2FPWbeYu8Qb.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A typeface designed for coding aesthetes with modern displays in mind. Delightful ligatures and an italic variant and bold style. It's paid but worth it. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://input.djr.com/" rel="noopener noreferrer"&gt;Input Mono&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625559763%2FhX0l8Acs6.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625559763%2FhX0l8Acs6.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Fonts for code from DJR &amp;amp; Font Bureau. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/tonsky/FiraCode" rel="noopener noreferrer"&gt;Firacode&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625692828%2FVumtj_9xu.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625692828%2FVumtj_9xu.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free monospaced font with programming ligatures &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.marksimonson.com/fonts/view/anonymous-pro" rel="noopener noreferrer"&gt;Anonymous Pro&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625727117%2Fv_cvTTsbA.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625727117%2Fv_cvTTsbA.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Comes with 4 style and fixed width designs. Mark Simmonson offer many fonts too. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/i-tu/Hasklig" rel="noopener noreferrer"&gt;Hasklig&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625985277%2FQ41AIqzhe.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627625985277%2FQ41AIqzhe.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hasklig - a code font with monospaced ligatures &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/be5invis/Iosevka" rel="noopener noreferrer"&gt;Iosevka&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627626007540%2F9Vt46FAK0.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627626007540%2F9Vt46FAK0.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Versatile typeface for code, from code. &lt;/p&gt;




&lt;p&gt;Textual styles, actually like topics, are an exceptionally close to home subject. Various engineers like various textual styles. Some adoration ligatures, others disdain. Some adoration italics, others disdain. &lt;/p&gt;

&lt;p&gt;Ideally, this aggregation was valuable to recognize what turns out best for you. Try it out, attempt them a few days, and you'll see the distinction. &lt;/p&gt;

&lt;p&gt;I'd love to hear which one you like the most.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>fonts</category>
      <category>developer</category>
    </item>
    <item>
      <title>🤩10 Websites to get free Developer Swags doing NOTHING</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Sun, 01 Aug 2021 05:13:53 +0000</pubDate>
      <link>https://dev.to/coderwatch/10-websites-to-get-free-developer-swags-doing-nothing-1j47</link>
      <guid>https://dev.to/coderwatch/10-websites-to-get-free-developer-swags-doing-nothing-1j47</guid>
      <description>&lt;p&gt;Who doesn't loves free products and that too some Developer swag. What I personally think is that 90% of Developer never buy stickers for their laptop they just get it for free from somewhere. And it's true actually 🤣🤣. So here in this post I have got some website which will give you some developer swags for free or by just doing simple tasks. &lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://devrant.com/free-stickers" rel="noopener noreferrer"&gt;DevRant&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdevrant.com%2Fstatic%2Fdevrant%2Fimg%2Fstickers-collection3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdevrant.com%2Fstatic%2Fdevrant%2Fimg%2Fstickers-collection3.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Squishy Ball&lt;/p&gt;

&lt;p&gt;Tasks to do: Post an awesome rant that gets over 750 ++'s&lt;/p&gt;

&lt;p&gt;After doing the tasks you just gotta mail to &lt;a href="mailto:stickers@devrant.io"&gt;stickers@devrant.io&lt;/a&gt; with:&lt;/p&gt;

&lt;p&gt;1) Your email address&lt;/p&gt;

&lt;p&gt;2) Your name and physical address &lt;/p&gt;

&lt;p&gt;Now Enjoy with the Squishy Ball&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://erxes.io/hubspot-alternative-erxes-swag" rel="noopener noreferrer"&gt;Erxes&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627651912186%2FFimuo7b_Z.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627651912186%2FFimuo7b_Z.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Tshirt and Stickers&lt;/p&gt;

&lt;p&gt;Tasks to do: To make pull request to Erxes &lt;a href="https://github.com/erxes/erxes" rel="noopener noreferrer"&gt;repo&lt;/a&gt;. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/Kong/kong/blob/master/CONTRIBUTING.md#contributor-t-shirt" rel="noopener noreferrer"&gt;Kong&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fkonghq.com%2Fwp-content%2Fuploads%2F2018%2F04%2F100-contributor-t-shirt-1024x768.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fkonghq.com%2Fwp-content%2Fuploads%2F2018%2F04%2F100-contributor-t-shirt-1024x768.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: T-shirt &lt;/p&gt;

&lt;p&gt;Tasks to do: Gets 1 Pull Request accepted&lt;/p&gt;

&lt;p&gt;After your Pull Request gets accepted, then you gotta fill this form up (&lt;a href="https://goo.gl/forms/5w6mxLaE4tz2YM0L2" rel="noopener noreferrer"&gt;https://goo.gl/forms/5w6mxLaE4tz2YM0L2&lt;/a&gt;)&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/facebook/docusaurus/issues/1834" rel="noopener noreferrer"&gt;Docusaurus&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627651939427%2FD5C7vfT3R.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627651939427%2FD5C7vfT3R.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Stickers&lt;/p&gt;

&lt;p&gt;Tasks to do: Migrate your website to Docusaurus&lt;/p&gt;

&lt;p&gt;This is a task that requires at least a few hours of commitment (can be more, depending on the website) and it targeted at people who want to learn more about Docusaurus and Open Source.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://redwoodjs.com/stickers" rel="noopener noreferrer"&gt;RedWoodJS&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627651961439%2Fvk2E0iPto.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627651961439%2Fvk2E0iPto.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Stickers&lt;/p&gt;

&lt;p&gt;Tasks to do: &lt;code&gt;Nothing&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;You just have to give your address and each week they pick upto 100 entries ad give out stockers, shipped to anywhere in the world for free. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://alligator.io" rel="noopener noreferrer"&gt;Alligator&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627651997239%2Fd53nB9en_.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627651997239%2Fd53nB9en_.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Cool Alligator Stickers&lt;/p&gt;

&lt;p&gt;Tasks to do: Write a Blog post&lt;/p&gt;

&lt;p&gt;Alligator.io is developing and they are searching for colleagues to think of some magnificent front-end advancement posts. &lt;/p&gt;

&lt;p&gt;Here are a portion of the subjects choices you can compose on: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vue.js &lt;/li&gt;
&lt;li&gt;Angular &lt;/li&gt;
&lt;li&gt;Preact &lt;/li&gt;
&lt;li&gt;React &lt;/li&gt;
&lt;li&gt;React Native &lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://jsbin.com/help/stickers/" rel="noopener noreferrer"&gt;JSBin&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fhelp.jsbin.com%2Fimages%2Fstickers.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fhelp.jsbin.com%2Fimages%2Fstickers.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Stickers&lt;/p&gt;

&lt;p&gt;Tasks to do: Nothing&lt;/p&gt;

&lt;p&gt;You’ll need to fill out the Google form with your name and address, and they will send you a few sticker on our next mail out. Google form link -&amp;gt; ( &lt;a href="https://docs.google.com/forms/d/e/1FAIpQLSeQ_PflKvabBLmdlHPOeBkD30aRs14yNGfvcaErpys_YSKXBA/viewform" rel="noopener noreferrer"&gt;https://docs.google.com/forms/d/e/1FAIpQLSeQ_PflKvabBLmdlHPOeBkD30aRs14yNGfvcaErpys_YSKXBA/viewform&lt;/a&gt; )&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://forms.gle/hEgV4E7RakQBaKgY9" rel="noopener noreferrer"&gt;IHP&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="" class="article-body-image-wrapper"&gt;&lt;img&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Stickers&lt;/p&gt;

&lt;p&gt;Tasks to do: Nothing&lt;/p&gt;

&lt;p&gt;The quickest method to construct type safe web applications. IHP is another included web structure enhanced for longterm efficiency and software engineer satisfaction&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://docs.google.com/forms/d/e/1FAIpQLScpL5wT5dsFTXZou49p7_W7Y2sbMeqKulvDrwHQabecc4YF7w/viewform" rel="noopener noreferrer"&gt;ImgBOT&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627652065590%2FM8UDq04Fp.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627652065590%2FM8UDq04Fp.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Bot Stickers&lt;/p&gt;

&lt;p&gt;Tasks to do: To install there bot on your repo&lt;/p&gt;

&lt;p&gt;ImgBOT iS a Github app that optimizes your images. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://airtable.com/shr8oKAIMZgdYnBxx" rel="noopener noreferrer"&gt;Dev Podcast Review&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627652094802%2Fd4kR3w7X9.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627652094802%2Fd4kR3w7X9.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Stickers&lt;/p&gt;

&lt;p&gt;Tasks to do: To give review of DevDiscuss or Devnews on Apple Podcasts&lt;/p&gt;

&lt;p&gt;DevDiscuss is the unique podcast from DEV.to community, a worldwide local area of programming engineers, everything being equal, and experience levels. The show covers consuming themes that sway the day by day lives of developers and past, facilitated by Forem Co-Founders, Ben Halpern and Jess Lee.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.gatsbyjs.org/docs/contributor-swag/" rel="noopener noreferrer"&gt;Gatsby&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.gatsbyjs.com%2Fstatic%2F5212f3b07a7af895b9b607fde19e7479%2Fdf51d%2Fgatsby-swag.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.gatsbyjs.com%2Fstatic%2F5212f3b07a7af895b9b607fde19e7479%2Fdf51d%2Fgatsby-swag.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Swag: Swags from here (&lt;a href="https://store.gatsbyjs.org/" rel="noopener noreferrer"&gt;https://store.gatsbyjs.org/&lt;/a&gt;) depends on Tier. &lt;/p&gt;

&lt;p&gt;Tasks to do: everyone who contributes to Gatsby &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tier 1 swag includes most items $10 and under&lt;/li&gt;
&lt;li&gt;Tier 2 swag includes most items $26 and under&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Enjoy wearing your swag and flexing on Twitter and in the DEV Community. &lt;br&gt;
If you know any other websites giving free swag please add so in the comments. &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>developer</category>
      <category>swag</category>
    </item>
    <item>
      <title>21 Amazing VS Code extensions for maximum productivity 2021</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Fri, 30 Jul 2021 05:52:45 +0000</pubDate>
      <link>https://dev.to/coderwatch/21-amazing-vs-code-extensions-for-maximum-productivity-2021-3cjb</link>
      <guid>https://dev.to/coderwatch/21-amazing-vs-code-extensions-for-maximum-productivity-2021-3cjb</guid>
      <description>&lt;p&gt;Visual Studio Code is a source code editor for building current web applications. It is a free and open-source manager. It upholds various augmentations that can be utilized for web application advancement. In this blog, we will discuss 21 of these extensions that are utilized in fostering a web application. &lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one" rel="noopener noreferrer"&gt;Markdown All in One&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1626969791427%2F6WcVCprBM.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1626969791427%2F6WcVCprBM.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;All you need for Markdown (keyboard shortcuts, table of contents, auto preview and more). One of my fav VS Code extensions as I write in makrdown format inside VS Code. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker" rel="noopener noreferrer"&gt;Code Spell Checker&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1626969893440%2FGZ8lABiIM.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1626969893440%2FGZ8lABiIM.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A basic spell checker that works well with camelCase code.&lt;/p&gt;

&lt;p&gt;The goal of this spell checker is to help catch common spelling errors while keeping the number of false positives low.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome" rel="noopener noreferrer"&gt;Debugger for Chrome&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FMicrosoft%2Fvscode-chrome-debug%2Fblob%2Fmaster%2Fimages%2Fdemo.gif%3Fraw%3Dtrue" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FMicrosoft%2Fvscode-chrome-debug%2Fblob%2Fmaster%2Fimages%2Fdemo.gif%3Fraw%3Dtrue" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=BriteSnow.vscode-toggle-quotes" rel="noopener noreferrer"&gt;Toggle Quotes&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280170449%2FhX82s8Kar.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280170449%2FhX82s8Kar.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Simple quote toggler that cycle through &lt;code&gt;" ' and&lt;/code&gt; `. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=alefragnani.Bookmarks" rel="noopener noreferrer"&gt;Bookmarks&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280204046%2Fvhb2g3Tyx.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280204046%2Fvhb2g3Tyx.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Essentially this extension permits you to add bookmarks in explicit lines in a record. You can likewise add a note why you have added this bookmark. Furthermore, you can likewise investigate the bookmarks in the bookmarks tab. Which will show you every one of the bookmarks in a specific venture.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments" rel="noopener noreferrer"&gt;Better Comments&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280220807%2FNSvGfZC_9.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280220807%2FNSvGfZC_9.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The Better Comments extension will assist you with making human-accommodating remarks in your code.&lt;br&gt;
With this extension, you will be able to categorise your annotations into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Alerts&lt;/li&gt;
&lt;li&gt;Queries&lt;/li&gt;
&lt;li&gt;TODOs&lt;/li&gt;
&lt;li&gt;Highlights&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=Anjali.clipboard-history" rel="noopener noreferrer"&gt;Clipboard History&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280244577%2F5W36nHUfS.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280244577%2F5W36nHUfS.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Keep a history of your copied items and re-paste if needed.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=rangav.vscode-thunder-client" rel="noopener noreferrer"&gt;Thunder Client&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280259237%2FLbhHuj2g_u.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280259237%2FLbhHuj2g_u.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Rest API Client for VS Code, GUI based Http Client.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens" rel="noopener noreferrer"&gt;Gitlens&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280287010%2FEEW9b1g3G.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280287010%2FEEW9b1g3G.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens" rel="noopener noreferrer"&gt;Error Lens&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280314977%2FV7TsyeJzD.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280314977%2FV7TsyeJzD.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ErrorLens super charges language demonstrative highlights by making diagnostics stand apart more noticeably, featuring the whole line any place an indicative is produced by the language and furthermore prints the message inline.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync" rel="noopener noreferrer"&gt;Setting Sync&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;![ ]( &lt;a href="https://cdn.hashnode.com/res/hashnode/image/upload/v1627280345474/HpAx2zEem.png?auto=compress" rel="noopener noreferrer"&gt;https://cdn.hashnode.com/res/hashnode/image/upload/v1627280345474/HpAx2zEem.png?auto=compress&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Synchronize Settings, Snippets, Themes, File Icons, Launch, Keybindings, Workspaces and Extensions Across Multiple Machines Using GitHub Gist.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=wix.vscode-import-cost" rel="noopener noreferrer"&gt;Import Cost&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280360511%2FGiT8IdxT8.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280360511%2FGiT8IdxT8.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This extension will show inline in the supervisor the size of the imported bundle. The extension uses webpack with 'babel-webpack-module' to identify the imported size.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=pranaygp.vscode-css-peek" rel="noopener noreferrer"&gt;CSS Peek&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280509836%2FjmNLuIM3f.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280509836%2FjmNLuIM3f.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Allow peeking to css ID and class strings as definitions from html files to respective CSS. Allows peek and goto definition.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=ChakrounAnas.turbo-console-log" rel="noopener noreferrer"&gt;Turbo Console Log&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280528402%2Fi6yPmRmAQ.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280528402%2Fi6yPmRmAQ.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Automating the process of writing meaningful log messages.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=techer.open-in-browser" rel="noopener noreferrer"&gt;Open in Browser&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280548540%2F6rjxpX7as.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280548540%2F6rjxpX7as.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This allows you to open the current file in your default browser or application.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-rename-tag" rel="noopener noreferrer"&gt;Auto Rename Tag&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1626967104800%2FQMkulcz3s.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1626967104800%2FQMkulcz3s.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Automatically rename paired HTML/XML tag, same as Visual Studio IDE does.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=wayou.vscode-todo-highlight" rel="noopener noreferrer"&gt;TO-DO highlight&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280573856%2FDOmfgHJad.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280573856%2FDOmfgHJad.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Highlight &lt;code&gt;TODO&lt;/code&gt;, &lt;code&gt;FIXME&lt;/code&gt; and other annotations within your code.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=pnp.polacode" rel="noopener noreferrer"&gt;Polacode&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Foctref%2Fpolacode%2Fraw%2Fmaster%2Fdemo%2Fusage.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Foctref%2Fpolacode%2Fraw%2Fmaster%2Fdemo%2Fusage.gif" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This extension is utilized for taking code bit screen captures. It tends to be utilized to reorder the code you need in piece screen captures effectively and save them in the wake of introducing the extension. You can track down the itemized data with respect to the extension in the accompanying connection.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory" rel="noopener noreferrer"&gt;Git History&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280619702%2FX_l2XGhEX.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280619702%2FX_l2XGhEX.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;View git log, file history, compare branches or commits. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode" rel="noopener noreferrer"&gt;Prettier&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280647762%2FgcJHpbo10.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280647762%2FgcJHpbo10.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Prettier is an obstinate code formatter. It implements a predictable style by parsing your code and re-printing it with its own guidelines that consider the greatest line length, wrapping code when essential.&lt;/p&gt;

&lt;h3&gt;
  
  
  Profile Switcher](&lt;a href="https://marketplace.visualstudio.com/items?itemName=aaronpowell.vscode-profile-switcher" rel="noopener noreferrer"&gt;https://marketplace.visualstudio.com/items?itemName=aaronpowell.vscode-profile-switcher&lt;/a&gt;)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280677207%2FisPjYdLFs.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627280677207%2FisPjYdLFs.png%3Fauto%3Dcompress" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Allows you to switch between different profiles you have created. This Extension permits you to characterize various settings profiles that you can without much of a stretch switch between. &lt;/p&gt;

&lt;p&gt;The first thought for this extension came from my longing to have a simple way for me to switch my VS Code to an arrangement that was better streamlined for introducing. &lt;/p&gt;




&lt;p&gt;These were 21 VSCode extension to further develop your programming efficiency without impinging on quality. In the event that you partook in this article and figure others can profit with it too, go ahead and share it via online media utilizing the catches at the highest point of the page.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>programming</category>
      <category>webdev</category>
      <category>coding</category>
    </item>
    <item>
      <title>24 Sexy Looking VS Code Themes to look cool in Cafe😂</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Thu, 29 Jul 2021 05:43:37 +0000</pubDate>
      <link>https://dev.to/coderwatch/24-sexy-looking-vs-code-themes-to-look-cool-in-cafe-53o8</link>
      <guid>https://dev.to/coderwatch/24-sexy-looking-vs-code-themes-to-look-cool-in-cafe-53o8</guid>
      <description>&lt;p&gt;I'm certain that there are a ton of designers out there that would prefer not to get sore eyes from working the entire day with a light-themed IDE. &lt;/p&gt;

&lt;p&gt;Actually, my table is dark, my office is dim on account of a power outage in the Window since you know, an excessive amount of light is irritating.&lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=wesbos.theme-cobalt2" rel="noopener noreferrer"&gt;Cobalt2 Theme Official&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fwesbos%2Fcobalt2-vscode%2Fcobalt2-updates%2Fimages%2Fss.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fwesbos%2Fcobalt2-vscode%2Fcobalt2-updates%2Fimages%2Fss.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An amazing dark category theme by Wes Bos. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=liviuschera.noctis" rel="noopener noreferrer"&gt;Noctis&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fliviuschera%2Fnoctis%2Fmaster%2Fimages%2Fnoctis.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fliviuschera%2Fnoctis%2Fmaster%2Fimages%2Fnoctis.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Noctis is a collection of light &amp;amp; dark themes with a well balanced blend of warm and cold colors&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=alexnho.a-touch-of-lilac-theme" rel="noopener noreferrer"&gt;A touch of Lilac&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Falexnho%2Fvscode-a-touch-of-lilac-theme%2Fmaster%2Fimages%2Fhtml.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Falexnho%2Fvscode-a-touch-of-lilac-theme%2Fmaster%2Fimages%2Fhtml.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lilac tinted color UI theme with vibrant syntax highlighting colors for Visual Studio Code. It also has a No-Italics version.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=RobbOwen.synthwave-vscode" rel="noopener noreferrer"&gt;SynthWave '84&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Frobb0wen%2Fsynthwave-vscode%2Fmaster%2Ftheme.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Frobb0wen%2Fsynthwave-vscode%2Fmaster%2Ftheme.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A Synthwave-inspired colour theme to satisfy your neon dreams&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=EliverLara.andromeda" rel="noopener noreferrer"&gt;Andromeda&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FEliverLara%2FAndromeda%2Fraw%2Fmaster%2Fimages%2Fandromeda.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FEliverLara%2FAndromeda%2Fraw%2Fmaster%2Fimages%2Fandromeda.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=marqu3s.aurora-x" rel="noopener noreferrer"&gt;Aurora X&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fmarqu3s10%2FAurora-X%2Fraw%2Fmaster%2Fimages%2Fscreenshot.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fmarqu3s10%2FAurora-X%2Fraw%2Fmaster%2Fimages%2Fscreenshot.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Minimalistic looking based on Material Theme&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=max-SS.cyberpunk" rel="noopener noreferrer"&gt;Cyberpunk&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FMurderlon%2Fcyberpunk-iterm%2Fblob%2Fmaster%2Fpreview.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2FMurderlon%2Fcyberpunk-iterm%2Fblob%2Fmaster%2Fpreview.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hacker colorscheme for iTerm &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=azemoh.one-monokai" rel="noopener noreferrer"&gt;One Monokai Theme&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fazemoh%2Fvscode-one-monokai%2Fraw%2Fmaster%2Fscreenshot-v0.2.0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fazemoh%2Fvscode-one-monokai%2Fraw%2Fmaster%2Fscreenshot-v0.2.0.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A cross between Monokai and One Dark theme&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=apvarun.celestial" rel="noopener noreferrer"&gt;Celestial&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fapvarun%2Fcelestial-theme%2Fmaster%2FPreview.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fapvarun%2Fcelestial-theme%2Fmaster%2FPreview.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;VS Code theme for all the people who love to code in deep dark spaces.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=robertrossmann.remedy" rel="noopener noreferrer"&gt;Remedy&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Frobertrossmann%2Fvscode-remedy%2Fmaster%2Fresources%2Fscreenshots%2Fpeekview.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Frobertrossmann%2Fvscode-remedy%2Fmaster%2Fresources%2Fscreenshots%2Fpeekview.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A dark &amp;amp; bright theme with orange accents with roots in Base16 - Eighties colour theme&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=emroussel.atomize-atom-one-dark-theme" rel="noopener noreferrer"&gt;Atom ONE&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="" class="article-body-image-wrapper"&gt;&lt;img&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A detailed and accurate Atom One Dark Theme&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=AlexDauenhauer.nocterial-palenight" rel="noopener noreferrer"&gt;Palenight&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Falexdauenhauer%2Fnocterial-palenight%2Fmain%2Fimages%2Fpython_sample.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Falexdauenhauer%2Fnocterial-palenight%2Fmain%2Fimages%2Fpython_sample.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This theme takes Noctis syntax highlighting and replaces color scheme with Material Palenight. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=peymanslh.blueberry-dark-theme" rel="noopener noreferrer"&gt;Bluberry Dark&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fpeymanslh%2Fvscode-blueberry-dark-theme%2Fmaster%2Fscreenshot.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fpeymanslh%2Fvscode-blueberry-dark-theme%2Fmaster%2Fscreenshot.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blueberry Dark Theme for Visual Studio Code&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=arcticicestudio.nord-visual-studio-code" rel="noopener noreferrer"&gt;Nord&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627281592263%2Fp1ZXOT2jL.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1627281592263%2Fp1ZXOT2jL.png%3Fauto%3Dcompress"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An arctic, north-bluish clean and elegant Visual Studio Code theme.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=sainnhe.gruvbox-material" rel="noopener noreferrer"&gt;Gruvbox Material&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgitlab.com%2Fsainnhe%2Fimg%2F-%2Fraw%2Fmaster%2Fgm-vsc-dark-soft-high-contrast.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgitlab.com%2Fsainnhe%2Fimg%2F-%2Fraw%2Fmaster%2Fgm-vsc-dark-soft-high-contrast.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgitlab.com%2Fsainnhe%2Fimg%2F-%2Fraw%2Fmaster%2Fgm-vsc-light-medium-material.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgitlab.com%2Fsainnhe%2Fimg%2F-%2Fraw%2Fmaster%2Fgm-vsc-light-medium-material.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Gruvbox with Material Palette&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=ahmadawais.shades-of-purple" rel="noopener noreferrer"&gt;Shadows of Purple&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="" class="article-body-image-wrapper"&gt;&lt;img&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🦄 A professional theme suite with hand-picked &amp;amp; bold shades of purple for your VS Code editor and terminal apps. One of the excellent, most downloaded, and top-rated VSCode Themes on the marketplace. Part of VSCode.pro course.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=dhedgecock.radical-vscode" rel="noopener noreferrer"&gt;Radical&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FDHedgecock%2Fradical-vscode%2Fmaster%2Fassets%2Feditor.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FDHedgecock%2Fradical-vscode%2Fmaster%2Fassets%2Feditor.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A dark theme for radical hacking inspired by retro futuristic design&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=teabyii.ayu" rel="noopener noreferrer"&gt;Ayu&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="" class="article-body-image-wrapper"&gt;&lt;img&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A simple theme with bright colors and comes in three versions — dark, light and mirage for all day long comfortable work.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=artlaman.chalice-color-theme" rel="noopener noreferrer"&gt;Chalice&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fartlaman%2Fchalice-color-theme%2Fmaster%2Fpreview-dark.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Fartlaman%2Fchalice-color-theme%2Fmaster%2Fpreview-dark.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Minimalistic color themes based on Alabaster theme&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=DhyeyThumar.helium-theme" rel="noopener noreferrer"&gt;Helium&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FDhyeythumar%2Fhelium-vscode%2Fmain%2Fimages%2Fexample.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FDhyeythumar%2Fhelium-vscode%2Fmain%2Fimages%2Fexample.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;VS Code Theme Color&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=andrewvallette.zeonica" rel="noopener noreferrer"&gt;Zeonica&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fzeonica.com%2Fimages%2Fzeonica_screenshot_home.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fzeonica.com%2Fimages%2Fzeonica_screenshot_home.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A colorful original theme with a dark blue background &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=ModoNoob.vscode-hipster-theme" rel="noopener noreferrer"&gt;Hipster&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Flalevac%2Fvscode-hipster-theme%2Fmaster%2Fscreenshot.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Flalevac%2Fvscode-hipster-theme%2Fmaster%2Fscreenshot.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A very colorful theme inspired by Atom's Hipster theme.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=jaredkent.laserwave" rel="noopener noreferrer"&gt;Laserwave&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FJaredk3nt%2Flaserwave%2F8ae402fa54d73ba36cd5810383cedd564dd1244e%2Fscreenshot.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FJaredk3nt%2Flaserwave%2F8ae402fa54d73ba36cd5810383cedd564dd1244e%2Fscreenshot.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Retro outrun syntax theme&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://marketplace.visualstudio.com/items?itemName=Yummygum.city-lights-theme" rel="noopener noreferrer"&gt;City Lights&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcitylights.xyz%2Fassets%2Fimages%2Ftheme%2Fvsc-syntax.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcitylights.xyz%2Fassets%2Fimages%2Ftheme%2Fvsc-syntax.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The City Lights Color Theme is a gorgeous dark color theme designed with focus in mind.&lt;/p&gt;




&lt;p&gt;These are our picks for the best Visual Studio Code topics. We trust this article assists you with picking another subject and give the general stylish of your coding arrangement a facelift. Things being what they are, which of these Visual Studio Code subjects do you like the most? &lt;/p&gt;

&lt;p&gt;Tell us in the comments segment underneath. Additionally, in the event that you utilize a subject that we haven't referenced yet ought to be on the rundown, don't spare a moment to impart it to others in the comments.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Image credits -&amp;gt; All the images credits to the publisher and developers of these amazing themes. *&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>vscode</category>
      <category>programming</category>
      <category>developers</category>
    </item>
    <item>
      <title>13 Super Amazing resume tips for Developers</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Wed, 28 Jul 2021 05:09:16 +0000</pubDate>
      <link>https://dev.to/coderwatch/13-super-amazing-resume-tips-for-developers-25mm</link>
      <guid>https://dev.to/coderwatch/13-super-amazing-resume-tips-for-developers-25mm</guid>
      <description>&lt;p&gt;Nothing is more awful than going through weeks or months going after a programming position and always failing to get a get back to. The opposition out there can be overwhelming, and the traditional counsel is to ensure that your resume sticks out. Be that as it may, how?&lt;/p&gt;

&lt;p&gt;Obviously, there's nothing of the sort as an ideal resume. What works at one organization may not dazzle the employing director at another. Each CTO or designing supervisor I know has an alternate arrangement of abilities or rundown of warnings, so shockingly no rundown of tips will promise you a task. &lt;/p&gt;

&lt;p&gt;In any case, there are a few recommendations that are all around accommodating in creating an extraordinary programming improvement continue.&lt;/p&gt;




&lt;h3&gt;
  
  
  Look for typos
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6LJLjax9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1616990277483-c801063f6946%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D637%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6LJLjax9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1616990277483-c801063f6946%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D637%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Try not to blow a gasket about each and every word decision, yet keep your sentence structure reliable and for hell's sake, spell things effectively. Each PC on the planet has spellcheck. Show that you care enough to address the squiggly red lines on your resume. &lt;/p&gt;

&lt;p&gt;Keep in mind: Developers need solid tender loving care, and you need to show that you have that. So regardless of whether "expressing" isn't your solid suit, this is a simple chance to show that you can get even the littlest of mistakes.&lt;/p&gt;

&lt;h3&gt;
  
  
  Include sub-headings
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dr9eddE1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1504691342899-4d92b50853e1%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dr9eddE1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1504691342899-4d92b50853e1%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Regardless of whether you're utilizing a resume format or making your own, you may discover there are some suggested segments you needn't bother with. &lt;/p&gt;

&lt;p&gt;For instance, you may require a resume rundown or a resume objective, however you ought exclude both. In case you are simply moving on from school or secondary school and have not yet stood firm on an expert situation, do exclude an unfilled work history segment. All things considered, you could supplant the experience segment with applicable coursework, scholarly accomplishments and different encounters like entry level positions or extracurricular undertakings.&lt;/p&gt;

&lt;h3&gt;
  
  
  Email matters too
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--MgeLNEoF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1557200134-90327ee9fafa%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--MgeLNEoF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1557200134-90327ee9fafa%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To set up a meeting, most employing chiefs will send you an email. However, in case you're utilizing an odd handle (or one that is equivalent to your filthy Twitter account), it just could alter their perspectives. I propose a blend of your first and last names or initials. &lt;/p&gt;

&lt;p&gt;Keep in mind, designers should be educated. In case you're utilizing a Hotmail account, I won't be intrigued with your web ability. &lt;/p&gt;

&lt;p&gt;It's actual: These tips probably won't make composing your resume any simpler. However, they will help you realize that you're destined for success when you're presenting an application, and that is definitely justified.&lt;/p&gt;

&lt;h3&gt;
  
  
  Projects and Side hustle matters
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--aMScNIVc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1572177812156-58036aae439c%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--aMScNIVc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1572177812156-58036aae439c%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Your resume ought to be separated into four principle areas: experience, schooling, abilities, and undertakings. That last part is particularly significant for a computer programmer continue. &lt;/p&gt;

&lt;p&gt;Regardless of whether you're simply beginning and you don't have long stretches of work insight behind you, you can in any case flaunt your abilities by posting the ventures you've finished. Work projects, individual ventures, coding bootcamp projects; list whatever's pertinent to the work you're searching for. &lt;/p&gt;

&lt;p&gt;"Businesses love to perceive what you've been really going after voluntarily," Demirev says. "Side undertakings show that you go the extra mile. You're not just learning at school or at work for your own advantage, you're additionally assembling something you appreciate." &lt;/p&gt;

&lt;p&gt;Another professional tip: incorporate metrics. In the event that you helped fabricate a site that increased from a couple dozen guests every day to hundreds, then, at that point you need to incorporate that data. Anything that shows substantial outcomes works for your potential benefit.&lt;/p&gt;

&lt;h3&gt;
  
  
  Make Your Contact Info Notable
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vD07TxTM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1499159058454-75067059248a%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D751%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vD07TxTM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1499159058454-75067059248a%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D751%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You don't have to remember your location for your resume any longer (truly!), however you do have to try to incorporate a telephone number and expert email address (not your business locale!) just as different spots the employing director can discover you on the web, similar to your LinkedIn profile and Twitter handle. &lt;/p&gt;

&lt;h3&gt;
  
  
  ATS friendly?
&lt;/h3&gt;

&lt;p&gt;At the point when you go after a position, your resume frequently goes through an Applicant Tracking System(ATS) before it at any point arrives at an individual. The ATS examines your resume and introductory letter, then, at that point scores your application dependent on how well the catchphrases contrast with the set of working responsibilities. &lt;/p&gt;

&lt;p&gt;Numerous enormous organizations, particularly Fortune 500 organizations, spend critical cash on global positioning frameworks to look over the tidal wave of approaching applications. &lt;/p&gt;

&lt;p&gt;Out of that load of candidates, the employing chief may just glance at the main 10 or 20 continues that scored the most elevated by the ATS. Assuming you need your resume to be seen, ensure it's in a standard organization and matches the expected set of responsibilities as intently as could really be expected. &lt;/p&gt;

&lt;p&gt;Likewise, do exclude any non-text components that could entangle the framework. These frameworks are simply keen enough to parse through text resumes, so on the off chance that you use pictures, tables, or a strange organization, the ATS may consign you to the lower part of the heap.&lt;/p&gt;

&lt;h3&gt;
  
  
  Make it One Stride Further
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1QQvbmvc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1531167599833-609a45d3d903%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1QQvbmvc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1531167599833-609a45d3d903%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Individuals employ performers, so you need to show that you didn't simply stuff, however that you completed stuff! As you take a gander at your list items, consider how you can make every assertion one stride further and include what the advantage was to your chief or your organization. &lt;/p&gt;

&lt;p&gt;By doing this, you obviously convey what you're able to do, yet additionally the immediate advantage the business will get by recruiting you.&lt;/p&gt;

&lt;h3&gt;
  
  
  Make scanning easy
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--KrS4JgFB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1617651482504-4b0d8bf23ba0%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D751%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KrS4JgFB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1617651482504-4b0d8bf23ba0%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D751%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Use list items whenever the situation allows. The easiest thing I can propose to you is to stay with list items whenever the situation allows, and keeping those sentences truly short (close to 2 lines of text). &lt;/p&gt;

&lt;p&gt;Utilize dynamic voice and basic language structure. Be immediate and succinct. Talk about the effect. Make it direct to sort out what you really did (or are doing) at your most recent work. &lt;/p&gt;

&lt;p&gt;Brain the most extreme width for meaningfulness. List items will not help if the width of your sections or records are excessively wide. 70-75 characters is the greatest. &lt;/p&gt;

&lt;p&gt;Utilize striking content to counterbalance significant data. Perceive how I'm doing that in this blog entry? You can do that on your CV. One way I've actually done this is to incorporate the advancements I effectively utilized underneath the list item outline of my obligations in a specific position.&lt;/p&gt;

&lt;h3&gt;
  
  
  Divide Them Evenly
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--FK7XZW0K--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1422207049116-cfaf69531072%3Fixlib%3Drb-1.2.1%26ixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26auto%3Dformat%26fit%3Dcrop%26w%3D1920%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--FK7XZW0K--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1422207049116-cfaf69531072%3Fixlib%3Drb-1.2.1%26ixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26auto%3Dformat%26fit%3Dcrop%26w%3D1920%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the event that you have heaps of abilities identified with a position—say, unknown dialect, programming, and initiative abilities—give breaking a shot one of those segments and posting it all alone. Beneath your "Abilities" segment, add another part named "Language Skills" or "Programming Skills," and detail your experience there. Once more—we're going for skimmability here, people!&lt;/p&gt;

&lt;h3&gt;
  
  
  Don't decorate
&lt;/h3&gt;

&lt;p&gt;Altered means you talk about the abilities you have and how they identify with a particular job. It doesn't mean exaggerate so you resemble a fantasy candidate. You'd be amazed the number of designers send me resumes professing to be "profoundly knowledgeable about ability X," yet when it comes time to talk with, I'm disclosed to it's something they just started learning. &lt;/p&gt;

&lt;p&gt;I accept this as a sign that a candidate is lying—or totally uninformed of his experience level. (In any case, it essentially closes the meeting.) So, be straightforward, even about the seemingly insignificant details.&lt;/p&gt;

&lt;h3&gt;
  
  
  Incorporate just the most applicable data and put the main data first
&lt;/h3&gt;

&lt;p&gt;While you may have broad work or instructive experience, keep your resume as brief as conceivable without leaving out key data. Recruiting administrators don't invest a ton of energy perusing each resume. Examination has shown that recruiting supervisors will in general go through just 6 seconds for every resume. On the off chance that your resume incorporates old or superfluous data, for example, occupations held more than 10 years prior or minor degrees and accomplishments, it might divert from significant data. &lt;/p&gt;

&lt;p&gt;Attempt to incorporate just work insight, accomplishments, instruction and abilities generally pertinent to the business. You can track down the most important characteristics by intently perusing the work posting. You ought to focus on significant data higher on your resume to cause to notice key abilities and accomplishments.&lt;/p&gt;

&lt;h3&gt;
  
  
  Color matters too
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--F8ZlHkho--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1502691876148-a84978e59af8%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--F8ZlHkho--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1502691876148-a84978e59af8%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The shadings you use on your resume can represent the moment of truth your application. &lt;/p&gt;

&lt;p&gt;In case you're applying to a task in a conventional industry, similar to law, bookkeeping, or land, think about utilizing no shading on your resume, or utilize an expert resume shading like dull blue or green. &lt;/p&gt;

&lt;p&gt;In case you're applying to a task in a more current industry like visual communication, promoting, or design, you can securely browse a more inventive shading range, however don't over-burden your resume with a few distinct tones. Utilize a couple of reciprocal tones for headers or boundaries. Your body text ought to be dark.&lt;/p&gt;

&lt;h3&gt;
  
  
  Spotlight Key Skills
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zidANHVk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1555602278-cb0e4ab8a01a%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zidANHVk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://images.unsplash.com/photo-1555602278-cb0e4ab8a01a%3Fixid%3DMnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8%26ixlib%3Drb-1.2.1%26auto%3Dformat%26fit%3Dcrop%26w%3D750%26q%3D80" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Regardless of whether you put your abilities segment at the highest point of your resume or at the base, after your work insight, ensure the abilities you list match the necessities for the work you're applying to. Not certain what those are? Peruse the expected set of responsibilities cautiously to see which abilities, projects, and watchwords are referenced. &lt;/p&gt;

&lt;p&gt;In case there's a prerequisite or duty recorded part of the set of working responsibilities that you've acted in a current or past job, it ought to be on your resume.&lt;/p&gt;




&lt;p&gt;Nowadays it's normal that you'll follow up your application with an email or call, not simply to affirm whether the business accepted your administrative work, yet additionally to ask in the event that they had any inquiries and express your craving to examine the work face to face. &lt;/p&gt;

&lt;p&gt;By calling or messaging subsequent to sending your resume you are demonstrating ingenuity, determination, and a powerful urge to be their No. 1 competitor. &lt;/p&gt;

&lt;p&gt;Also, on the off chance that you progress to the meeting stage, it's pleasant to send a thank you letter and emphasize your eagerness for the position on the off chance that you felt the meeting went especially well.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>coders</category>
    </item>
    <item>
      <title>18 NPM Best and Underrated  packages you should use in your projects</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Mon, 26 Jul 2021 06:11:48 +0000</pubDate>
      <link>https://dev.to/coderwatch/18-npm-best-and-underrated-packages-you-should-use-in-your-projects-c90</link>
      <guid>https://dev.to/coderwatch/18-npm-best-and-underrated-packages-you-should-use-in-your-projects-c90</guid>
      <description>&lt;p&gt;NPM bundles save us huge loads of time and exertion. Need a date library? There's a bundle for it. Need a utility library? Forget about it, simply introduce the bundle. At whatever point you need to take care of an issue with code, the odds are there's a bundle custom-made to your requirements. &lt;/p&gt;

&lt;p&gt;Here's a rundown of bundles I figure each Node.js designer should know. Treat these NPM bundles as efficient devices and wizardry pixie partners.&lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://mochajs.org/"&gt;MochaJS&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xApEFfEd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929420304/ix8F3F8GA.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xApEFfEd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929420304/ix8F3F8GA.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Mocha is a feature-rich JavaScript test framework running on Node.js and in the browser, making asynchronous testing simple and fun. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.npmjs.com/package/joi"&gt;JOI&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Gu2VJNO9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929470267/J-UiauY04.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Gu2VJNO9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929470267/J-UiauY04.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The most powerful schema description language and data validator for JavaScript.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/plurals/pluralize"&gt;Pluralize&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--D7tORp6c--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929490015/3qMRzh-XB.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--D7tORp6c--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929490015/3qMRzh-XB.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Pluralize or singularize any word based on a count&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/nodemailer/nodemailer"&gt;Nodemailer&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xQbHBXBt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929522581/d68fSa321.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xQbHBXBt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929522581/d68fSa321.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✉️ Send e-mails with Node.JS – easy as cake! &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/recharts/recharts"&gt;Recharts&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--71KjXCRo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929544959/aQ95bXo37.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--71KjXCRo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929544959/aQ95bXo37.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Recharts is a Redefined chart library built with React and D3.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://cheerio.js.org/"&gt;CheerioJS&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--VwyB6Vtb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929889513/qb5eIJ5BU.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--VwyB6Vtb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929889513/qb5eIJ5BU.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Fast, flexible &amp;amp; lean implementation of core jQuery designed specifically for the server.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/jsdom/jsdom"&gt;JSDOM&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Ul4sEKJT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929799853/JX2tOp1UB.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Ul4sEKJT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626929799853/JX2tOp1UB.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A JavaScript implementation of various web standards, for use with Node.js&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/nullivex/nodist"&gt;Nodoist&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tVg0XaOt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930375660/zHeIk5jm5.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tVg0XaOt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930375660/zHeIk5jm5.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A node.js and npm version manager for the windows folks out there. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/chalk"&gt;Chalk&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BONbiWno--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930447838/7A--G1Qkt.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BONbiWno--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930447838/7A--G1Qkt.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Terminal string styling done right&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.npmjs.com/package/nodemon"&gt;Nodemon&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--KJi8_HWu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930418457/cyUzxQdBC.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KJi8_HWu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930418457/cyUzxQdBC.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;nodemon&lt;/code&gt; is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://date-fns.org/"&gt;date-fns&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8zK5jSl8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931042722/Vxxfnb9R5.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8zK5jSl8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931042722/Vxxfnb9R5.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;date-fns&lt;/code&gt; provides the most comprehensive, yet simple and consistent toolset for manipulating JavaScript dates in a browser &amp;amp; Node.js.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/ai/nanoid/"&gt;NanoID&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---iYY0Xk1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930950994/E_hCYeR4p.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---iYY0Xk1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930950994/E_hCYeR4p.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A tiny (108 bytes), secure, URL-friendly, unique string ID generator for JavaScript&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.npmjs.com/package/browserify"&gt;Browserify&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JVTC_XwC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930985497/2T3ZOegcF.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JVTC_XwC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930985497/2T3ZOegcF.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Use a &lt;code&gt;node-style&lt;/code&gt; &lt;code&gt;require()&lt;/code&gt; to organize your browser code and load modules installed by npm.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;browserify&lt;/strong&gt; will recursively analyze all the require() calls in your app in order to build a bundle you can serve up to the browser in a single &lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; tag.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/visionmedia/debug"&gt;Debug&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tz5saKFv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930898882/yXfFnf--i.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tz5saKFv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930898882/yXfFnf--i.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A tiny JavaScript debugging utility modelled after Node.js core's debugging technique. Works in Node.js and web browsers&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/expressjs/morgan"&gt;Morgan&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YYCl0PnP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930883214/YlFpUqy_W.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YYCl0PnP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930883214/YlFpUqy_W.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;HTTP request logger middleware for node.js&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://pm2.keymetrics.io/"&gt;PM2&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1Pm8ELf3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930744012/cGjdKgciw.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1Pm8ELf3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930744012/cGjdKgciw.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ADVANCED, PRODUCTION PROCESS MANAGER FOR NODE.JS, &lt;br&gt;
PM2 is a daemon process manager that will help you manage and keep your application online 24/7&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/typicode/husky"&gt;Husky&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--i_lHfOdp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930649919/pnoE1q64e.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--i_lHfOdp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930649919/pnoE1q64e.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Modern native Git hooks made easy,&lt;br&gt;
Husky improves your commits and more&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/validatorjs/validator.js"&gt;Validator&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--lkcud2an--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930492333/RKHQ6HQQjR.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--lkcud2an--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626930492333/RKHQ6HQQjR.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A library of string validators and sanitizers.&lt;/p&gt;




&lt;p&gt;This was our rundown of the top NPM bundles that coders and web designers can try out. We have examined both famous just as not really well known at this point powerful NPM bundles in this rundown. &lt;/p&gt;

&lt;p&gt;Prior to summing up, we should disclose to you that don't pass by the fame of the NPM bundles. All things being equal, pass by your own prerequisites.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>npm</category>
      <category>node</category>
    </item>
    <item>
      <title>22 Top and Highest Rated UDEMY courses worth your everything</title>
      <dc:creator>coderwatchHQ</dc:creator>
      <pubDate>Sun, 25 Jul 2021 13:39:18 +0000</pubDate>
      <link>https://dev.to/coderwatch/22-top-and-highest-rated-udemy-courses-worth-your-everything-ko7</link>
      <guid>https://dev.to/coderwatch/22-top-and-highest-rated-udemy-courses-worth-your-everything-ko7</guid>
      <description>&lt;p&gt;It has an incredible assortment of courses, and as the vision says anyone can be an educator since you can discover from novice courses to proficient courses and you can learn at your own speed, the site gives numerous offers and limits and a wide scope of costs which is extraordinary, likewise the interface is continually advancing and refreshing the site as time goes. &lt;/p&gt;

&lt;p&gt;Everything isn't acceptable generally so Udemy has it cons as well, Since it is essentially an open stage, you can discover terrible quality in certain courses including sound and video and furthermore not really proficient courses, however close to quality issues the site gives numerous choices and it is an incredible site to learn anything you need.&lt;/p&gt;

&lt;p&gt;Let's look into 22 Best, High rated and worth of your Time and Money courses. &lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/deeplearning/"&gt;Deep Learning A-Z™: Hands-On Artificial Neural Networks&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--loNyeTCw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931550535/2bnMCT8jD.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--loNyeTCw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931550535/2bnMCT8jD.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;This course is simply brilliant. It gives you a comprehension of different kinds of profound learning models and guides us through executing them. It is an incredible asset to have. &lt;/p&gt;

&lt;p&gt;The substance in the course is very much clarified, and it is just about as effectively reasonable as a theme permits since there are quite cutting-edge and complex subjects. The extra perusing is additionally exceptionally valuable assuming you need to go more top to bottom. &lt;/p&gt;

&lt;p&gt;The makers of the course breakdown everything into straightforward language making it more clear a large portion of the course even without a solid numerical foundation yet for the individuals who are keen on the science, they give definite extra readings made by them or point towards great examination papers.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/complete-python-bootcamp/"&gt;2021 Complete Python Bootcamp From Zero to Hero in Python&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZR5AAP2o--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931591260/Ddq5nNo9L.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZR5AAP2o--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931591260/Ddq5nNo9L.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding &lt;/p&gt;

&lt;p&gt;Jose is a brilliant instructor, The way he explains it becomes easy for learners like me who is new to this field. Python has been one of the languages which is used everywhere and there are lot of course also available, but this one sets it apart.&lt;/p&gt;

&lt;p&gt;It's particularly good how many tests/ assessments there are which forces you to go back over any topics that you're not too comfortable with.&lt;br&gt;
The quality of content is amazing , full in depth detail on each topics , Easy to grasp and experiment .&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/the-complete-sql-bootcamp/"&gt;The Complete SQL Bootcamp 2021: Go from Zero to Hero&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mo7mslIo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931621036/54R1Woeia.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mo7mslIo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931621036/54R1Woeia.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;The course is above assumption. Every one of the essentials and construction is very clear cut straightforward, simple to helpful likewise makes you anxious to go for hands on rehearses. In general as per me the instructor cause me more to energize in the wake of sending the entire aide bit by bit. Go for the course extremely supportive and unquestionably it makes you from ZERO TO HERO&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/git-complete/"&gt;Git Complete: The definitive, step-by-step guide to Git&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--V28TOUIf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931661124/oyACtb5EW.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--V28TOUIf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931661124/oyACtb5EW.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;This course is stunning! I had no involvement in Git going into it yet I came out with an abundance of valuable Git information. It covers every one of the principle points exhaustively yet what makes this course stand apart is that reality that you can track so without any problem.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/php-with-laravel-for-beginners-become-a-master-in-laravel/"&gt;PHP with Laravel for beginners - Become a Master in Laravel&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--70dnNVFN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931691615/4lC5sxxyw.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--70dnNVFN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931691615/4lC5sxxyw.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;Assuming you need to become familiar with some programming expertise and Edwin has course for it then, at that point don't think or look for different courses. &lt;/p&gt;

&lt;p&gt;Edwin is an incredible motivation. Each exercise isn't wonderful which makes this the best course. In the event that something turns out badly Edwin goes for it and tells you the best way to investigate. This assists you with learning better and see better. You learn numerous a lot a greater number of things other than Laravel.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/advanced-css-and-sass/"&gt;Advanced CSS and Sass: Flexbox, Grid, Animations and More!&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--524YcnaA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931718472/yCphqOr1X.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--524YcnaA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931718472/yCphqOr1X.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;Best course out there for learning CSS. Indeed, even in 2021 the ideas, information in this course is obviously better than a large portion of the courses out there. Jonas is a genuine expert, giving profound information on essentials. &lt;/p&gt;

&lt;p&gt;I would prescribe to go through fundamental CSS course first prior to taking this course, in light of the fact that frequently individuals who don't have clear comprehension of essential CSS, take this course and afterward fault on showing colleague for not responding to questions. Definately look at it, obviously better than any CSS course.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/machinelearning"&gt;Machine Learning A-Z™: Hands-On Python &amp;amp; R In Data Science&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oxdrgO0k--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931867309/wQf9iz4X5.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oxdrgO0k--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931867309/wQf9iz4X5.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;This course is perfectly coordinated and conveyed. Kirill Eremenko and Hadelin de Ponteves are the specialists in showing the ideas. The ideas were exact in content. I completely partook in the course, and it was enjoyable. &lt;/p&gt;

&lt;p&gt;Kirill instinct recordings were fresh and exact, it helps amateurs in understanding the ML ideas and make them a superior information researcher. I think, his Intuition recordings are the top clarification recordings in this field, simplifying complex points to comprehend. Furthermore, he even proposes motion pictures that gives us a thought on ML and AI prospects. &lt;strong&gt;SuperDataScience&lt;/strong&gt; web recording is a gigantic advantage, it gives us the information about the latest things in Data Science field. I turned into a fan and I routinely follow it. &lt;/p&gt;

&lt;p&gt;Hadelin clarification about each line of code was first class. I think, He is deliverer for the information science fledglings. He gives clarification on each line of code and its use. Best of all, he even showed us how to look on the web and distinguish the API, Libraries that is utilized in the code, which helps us in our vocations.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/vuejs-2-the-complete-guide/"&gt;Vue - The Complete Guide (w/ Router, Vuex, Composition API)&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--AG2ZVv2u--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931888316/oO-Ja_65m.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--AG2ZVv2u--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931888316/oO-Ja_65m.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;I haven't discovered any assets on par with this one. &lt;/p&gt;

&lt;p&gt;He's very conscientious, utilizes great coding practices, and presents things in a legitimate request that forms effectively on past addresses. The talks are likewise very much named so you can undoubtedly discover and re-watch past talks or get out ahead on the off chance that you need to. These talks are exceptionally simple to watch and have covered a large portion of my Vue questions, incorporating with the Composition API. &lt;/p&gt;

&lt;p&gt;He doesn't rehash the same thing superfluously like a many individuals do, and the talks are sufficiently short so you don't lose center in a talk.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/design-and-develop-a-killer-website-with-html5-and-css3/"&gt;Build Responsive Real-World Websites with HTML and CSS&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--x20SIRNa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931917835/GIJzEIQ-2.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--x20SIRNa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931917835/GIJzEIQ-2.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;Despite the fact that it's obsolete, there was as yet an enormous measure of amazingly helpful data, methods, and procedures that caused me to acknowledge how little I knew. It was additionally decent that we didn't do 1,000,000 undertakings; this made it durable and simple to follow with minimal overhead, and we wound up with a pleasant venture that is really respectable and fulfilling to take a gander at. &lt;/p&gt;

&lt;p&gt;I will say, nonetheless, that I may have just been agreeable toward the start of this course since I previously had a fundamental information on HTML/CSS prior to coming in.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/seo-get-to-number1-in-google-search/"&gt;SEO 2021: Complete SEO Training + SEO for WordPress Websites&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xsDjANwp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931944947/FuMU624Yx.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xsDjANwp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931944947/FuMU624Yx.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: SEO&lt;/p&gt;

&lt;p&gt;This course was totally astounding! Arun was incredible at clarifying all that he covered. Certainly incredible for novices as well and will make you fully aware of numerous ideas. I firmly accept that on the off chance that you take the ideas canvassed in this course and apply them, just as some experience of your own, that you can turn into an expert. &lt;/p&gt;

&lt;p&gt;I will say in any case, I would have loved there to be a little area or a talk, or even a few connects to some extraordinary posts that Arun thinks fulfill every one of his guidelines.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/the-complete-nodejs-developer-course-2/"&gt;The Complete Node.js Developer Course (3rd Edition)&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--VnoxQwM6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931979395/I7BZNzt08.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--VnoxQwM6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626931979395/I7BZNzt08.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;Andrew is an incredible educator. His sentences are moderate and brief. He clarifies things out well and attempts to show you numerous methods of tackling a similar issue. &lt;/p&gt;

&lt;p&gt;He didn't coat over center issues and give you a for the most part constructed application and afterward tell you the best way to wire up a couple of courses. You construct the applications starting from the earliest stage, except for the last application that you fabricate which accompanies some css so you can zero in on building a hub application as opposed to zeroing in on the plan perspective.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/"&gt;An Entire MBA in 1 Course:Award Winning Business School Prof&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--x66ou9Dd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932005004/cvfKuvrjr.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--x66ou9Dd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932005004/cvfKuvrjr.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: MBA, Business&lt;/p&gt;

&lt;p&gt;This is an astounding course! &lt;/p&gt;

&lt;p&gt;If you are new to this theme, you can go for this course. Every one of the ideas are thought so well. Before the finish of this course you'll be sufficiently sure to apply those ML strategies yourself.&lt;/p&gt;

&lt;p&gt;This course is wonderful as a starting course to ML. Heaps of code formats and pragmatic models. The instructional exercises are straightforward and follow. I like the choice to tweak video speed. The lone analysis is that I would have preferred a smidgen more hypothetical and numerical foundation (instead of just instinct). However, generally, truly fulfilled. A debt of gratitude is in order for having such incredible quality courses at a reasonable cost!&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/understanding-typescript/"&gt;Understanding TypeScript - 2021 Edition&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--5wkD-Lyy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932030608/hBpU7Acrs.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--5wkD-Lyy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932030608/hBpU7Acrs.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;Max truly worked effectively with his courses, he generally remind individuals on the best way to do things another way, additionally continues to remind individuals that "this technique" has been educated prior. What's more, all things considered, he continue to clarify the strategy once more. So this is excellent in case you're a novice. Obviously, you need to learn Javascript first prior to doing this. &lt;/p&gt;

&lt;p&gt;The cons of this course is, this is a "Amateur" to "Center" course. Max continue rehashing exactly the same thing which would appear to be repetitive in case you're really a fast student, hence making the video longer. &lt;/p&gt;

&lt;p&gt;In any case, hello, assuming you're fine with that, this is the right course for you.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/seo-with-google-other-large-platforms-to-get-great-scale/"&gt;SEO Training Masterclass 2021: Beginner SEO To Advanced SEO&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--V8A7EIAe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932059471/ZhnMuQ5wT_.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--V8A7EIAe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932059471/ZhnMuQ5wT_.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: SEO&lt;/p&gt;

&lt;p&gt;The course described SEO in-depth. At first, you will only wanted to learn about keywords, but you'll get a lot more from SEO. What's great about this course is that it adapts to the trends of SEO quickly.&lt;/p&gt;

&lt;p&gt;The differential of this course was the focus on technical seo, especially the part where you help us understand pagespeed insights and how we may procced to correct this. this was something i've never seen on other SEO courses and its really helpful. and you focus on content more than the good practices of SEO that we may learn by ourselves easily. the content is always the king and the key to a good ranking.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/learn-digital-marketing-course/"&gt;The Complete Digital Marketing Course - 12 Courses in 1&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--n1wMzwwo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932113799/vBr2rShfR.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--n1wMzwwo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932113799/vBr2rShfR.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Digital Marketing&lt;/p&gt;

&lt;p&gt;It's a decent course however I would just suggest it for amateurs. It discloses more about how to make accounts as opposed to how to deal with the ones you as of now have. &lt;/p&gt;

&lt;p&gt;Besides, as he for the most part shows instances of his own pages, there are less information or other data to gain from. Additionally, most recordings were a few years prior. I would recommend an update. &lt;/p&gt;

&lt;p&gt;So in case you are simply beginning, I would thoroughly suggest this course. In the event that you as of now work in this field, there are numerous things you can gain from this course too. In any case, you may get exhausted with most piece of the initial material present in this course. &lt;/p&gt;

&lt;p&gt;This course blew away every one of the assumptions I had for it. There is extraordinary guidance in each part and assuming you need to begin a business and need to utilize web based showcasing to advance it this course is for you. Assuming you need to get into the web based advertising business this course will give you the foundation to kick your vocation off. I can't envision a superior course to show you internet promoting.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/the-complete-guide-to-angular-2/"&gt;Angular - The Complete Guide (2021 Edition)&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8oZBPGg1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932155622/WP05vB7iJ.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8oZBPGg1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932155622/WP05vB7iJ.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;This is a truly complete course; I left away feeling like I took in an enormous sum about Angular. Precise is an enormous structure/eco-framework so it's unrealistic to really leave away knowing it all. The educator gives you enough foundation, so you would then be able to return and plunge profound into spaces of relevant interest to you. You unquestionably will leave away knowing every one of the essentials. &lt;/p&gt;

&lt;p&gt;The course gets somewhat thick in the "NgRx" area. In any case, through this thickness you'll get a genuine appreciation for Observables. Generally speaking an incredible course, in light of the fact that the educator gives a great deal of consideration to subtleties that assist you with learning&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/python-the-complete-python-developer-course/"&gt;Learn Python Programming Masterclass&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IpQM5hgY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932190873/8gNSdlLXI.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IpQM5hgY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932190873/8gNSdlLXI.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;It is a decent course, with a ton of information in it. In any case, on my case, it was "Masterclass" that jab my advantage and made me pick it. Masterclass is certainly an exaggeration for this course. You learn stuff, yet with the time spent on this course I feel like I might have dominated something like a couple of parts of Python all alone. &lt;/p&gt;

&lt;p&gt;Interestingly, Tim and JP update and redesign the course constantly, so better substance I generally coming, yet honestly don't anticipate dominating anything on Python in this course. &lt;/p&gt;

&lt;p&gt;This is an exceptionally thorough course. The ideas are clarified well and there is a great deal if helpful data clarifying the set of experiences, shows and execution of various parts of the language. Specifically, the revised recordings toward the beginning of the course are truly extraordinary. They are broken into more modest scaled down pieces with pleasant intelligent activities to supplement the video material.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/microsoft-excel-2013-from-beginner-to-advanced-and-beyond/"&gt;Microsoft Excel - Excel from Beginner to Advanced&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mCHbw8ub--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932219253/hXUJnhZRM.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mCHbw8ub--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932219253/hXUJnhZRM.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Excel Skill&lt;/p&gt;

&lt;p&gt;Phenomenal course that step by step begins with the nuts and bolts and moves toward the high level ideas through basic and drawing in addresses enhanced with various models for clear agreement. &lt;/p&gt;

&lt;p&gt;This course instructed by Kyle Pew is an itemized, clear and far reaching course clarifying every one of the ideas from Beginner to Advanced right from the scratch. Kyle is an astonishing educator clarifying each smidgen of MS Excel in a simple way and making working in Excel such a lot of fun.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/react-redux/"&gt;Modern React with Redux&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--I0vZAkaE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932249429/6mBrll72s.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--I0vZAkaE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932249429/6mBrll72s.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;Stephen is an extraordinary educator! Albeit the course is substantial on class-based segments, there is an entire area that clarifies React Hooks exhaustively. Additionally, a significant number of the remarks in the Q/A refactor Stephen's code into React Hooks, so you're not passing up anything. Stephen clarifies significant ideas so well and I'm glad to say that I feel open to utilizing React. &lt;/p&gt;

&lt;p&gt;I considered this course close by other JavaScript seminars on Udemy and my recommendation is acquire a mid-level comprehension of JavaScript and afterward take this course. I accept this course is thorough, very much organized and has effectively assisted me with building illustrations with parallax impacts utilizing State and DOM Refs. I would prescribe this course to any individual who wishes to comprehend the better subtleties of React.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/the-data-science-course-complete-data-science-bootcamp/"&gt;The Data Science Course 2021: Complete Data Science Bootcamp&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GcDX9hZp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932278941/LNlAkas_j.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GcDX9hZp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932278941/LNlAkas_j.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding &lt;/p&gt;

&lt;p&gt;The course is all around organized with extraordinary pacing. The educators go bit by bit through the whole interaction in an exceptionally careful manner. A few talks or subtleties are somewhat tedious or exceptionally essential yet that is sensible. &lt;/p&gt;

&lt;p&gt;I think some about the tests were excess as they were there additional to check whether you realize the material given as opposed to really checking information and ideas. &lt;/p&gt;

&lt;p&gt;Subsequent to going through numerous courses, books, online journals and completing this course, I can certainly say to any individual who is still at beginning phase to simply have LEAP OF FAITH over this course and at last it will help in making solid establishment. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/the-complete-web-development-bootcamp/"&gt;The Complete 2021 Web Development Bootcamp&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IlJmb_5k--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932306070/AFwLfRTcd.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IlJmb_5k--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932306070/AFwLfRTcd.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: Coding&lt;/p&gt;

&lt;p&gt;This is an exceptionally exhaustive course that will take you from the actual rudiments of HTML and CSS to Javascript, Node.js, React, MongoDB and then some. The course is loaded with free assets giving a lot of extension to profound jumps into practically any part of the topic. Certainly, agreeable and beneficial. &lt;/p&gt;

&lt;p&gt;This course is stunning. The procedure is incredible, Angela truly sees how learning works and how to make the most from the online apparatuses. I learned significantly more than I expected, about the hypothesis behind coding as well as how to actualy complete things. Other truly significant thing I learned here is the manner by which and where get informations, how to look for and read documentations.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.udemy.com/course/wordpress-for-beginners-course"&gt;Wordpress for Beginners - Master Wordpress Quickly&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--R6dX8MBq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932328390/NRRPHOFjx.png%3Fauto%3Dcompress" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--R6dX8MBq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1626932328390/NRRPHOFjx.png%3Fauto%3Dcompress" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type: WordPress&lt;/p&gt;

&lt;p&gt;This is the ideal course for novices who might want to get into the essentials of WordPress. Adhering to the directions was extremely simple as the educator has a quiet and consistent speed. &lt;/p&gt;

&lt;p&gt;This course assisted me with proceeding to fill a few holes and gain new information. Andy coordinated the course quite well and made the subject fascinating. The course is separated into little segments, which is advantageous assuming you need to overhaul some particular parts later.&lt;/p&gt;




&lt;p&gt;These were some courses that are high rated and most bought by students on web (mostly bought in pandemic). I hope this collection will help you to learn more. You also know courses on Udemy are always on discount, so you'll never waste your money and everything will be worth your time. The costs of the courses are in INR that is Indian currency, some people say if used VPN and buy this course you'll get for more cheap, anyway we don't endorse that. &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>python</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
