<?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: Akash P</title>
    <description>The latest articles on DEV Community by Akash P (@akashpreet).</description>
    <link>https://dev.to/akashpreet</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%2F343129%2F587b46ad-1e20-4663-b728-ec6e7a5ea8b0.png</url>
      <title>DEV Community: Akash P</title>
      <link>https://dev.to/akashpreet</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akashpreet"/>
    <language>en</language>
    <item>
      <title>GetHelp('resumeTemplate')</title>
      <dc:creator>Akash P</dc:creator>
      <pubDate>Wed, 01 Apr 2020 18:03:00 +0000</pubDate>
      <link>https://dev.to/akashpreet/gethelp-resumetemplate-39e7</link>
      <guid>https://dev.to/akashpreet/gethelp-resumetemplate-39e7</guid>
      <description>&lt;p&gt;Hello, World!&lt;br&gt;
I just got a spark to build an &lt;strong&gt;Open Source Resume and Portfolio Builder&lt;/strong&gt; for our fellow developers and whoever to make use of it.&lt;br&gt;
Planning to build it as &lt;strong&gt;Full-Stack JavaScript&lt;/strong&gt; application and I am getting started with this schema found in this open source project &lt;a href="https://jsonresume.org/"&gt;JsonResume&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I am calling a GetHelp method and expecting to get your favorite resume templates in the form of &lt;strong&gt;&lt;em&gt;HTML&lt;/em&gt;, &lt;em&gt;links&lt;/em&gt;, &lt;em&gt;images&lt;/em&gt;, &lt;em&gt;gist&lt;/em&gt;, etc&lt;/strong&gt; in return that you wish to be in my project.&lt;/p&gt;

&lt;p&gt;Since it is an &lt;strong&gt;Async&lt;/strong&gt; function I am not waiting for the return to happen and just going to &lt;strong&gt;start&lt;/strong&gt; with my favorite template using the below JSON schema.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
  "basics": {
    "name": "John Doe",
    "label": "Programmer",
    "picture": "",
    "email": "john@gmail.com",
    "phone": "(912) 555-4321",
    "website": "http://johndoe.com",
    "summary": "A summary of John Doe...",
    "location": {
      "address": "2712 Broadway St",
      "postalCode": "CA 94115",
      "city": "San Francisco",
      "countryCode": "US",
      "region": "California"
    },
    "profiles": [{
      "network": "Twitter",
      "username": "john",
      "url": "http://twitter.com/john"
    }]
  },
  "work": [{
    "company": "Company",
    "position": "President",
    "website": "http://company.com",
    "startDate": "2013-01-01",
    "endDate": "2014-01-01",
    "summary": "Description...",
    "highlights": [
      "Started the company"
    ]
  }],
  "volunteer": [{
    "organization": "Organization",
    "position": "Volunteer",
    "website": "http://organization.com/",
    "startDate": "2012-01-01",
    "endDate": "2013-01-01",
    "summary": "Description...",
    "highlights": [
      "Awarded 'Volunteer of the Month'"
    ]
  }],
  "education": [{
    "institution": "University",
    "area": "Software Development",
    "studyType": "Bachelor",
    "startDate": "2011-01-01",
    "endDate": "2013-01-01",
    "gpa": "4.0",
    "courses": [
      "DB1101 - Basic SQL"
    ]
  }],
  "awards": [{
    "title": "Award",
    "date": "2014-11-01",
    "awarder": "Company",
    "summary": "There is no spoon."
  }],
  "publications": [{
    "name": "Publication",
    "publisher": "Company",
    "releaseDate": "2014-10-01",
    "website": "http://publication.com",
    "summary": "Description..."
  }],
  "skills": [{
    "name": "Web Development",
    "level": "Master",
    "keywords": [
      "HTML",
      "CSS",
      "Javascript"
    ]
  }],
  "languages": [{
    "language": "English",
    "fluency": "Native speaker"
  }],
  "interests": [{
    "name": "Wildlife",
    "keywords": [
      "Ferrets",
      "Unicorns"
    ]
  }],
  "references": [{
    "name": "Jane Doe",
    "reference": "Reference..."
  }]
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Just remember about the &lt;strong&gt;Promise&lt;/strong&gt; that Async function should return :-)&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>vue</category>
      <category>github</category>
      <category>node</category>
    </item>
    <item>
      <title># of ways to loop Array in JavaScipt</title>
      <dc:creator>Akash P</dc:creator>
      <pubDate>Mon, 30 Mar 2020 18:29:24 +0000</pubDate>
      <link>https://dev.to/akashpreet/of-ways-to-loop-array-in-javascipt-3d02</link>
      <guid>https://dev.to/akashpreet/of-ways-to-loop-array-in-javascipt-3d02</guid>
      <description>&lt;p&gt;Hello, World!&lt;br&gt;
Here is a challenge, tell me the no of ways in which we can loop over the given arrays below?&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//Array one

let letters = ['j','a','v','a','s','c','r','i','p','t']

//Array Two

let javaScipt = [
 {
   name:'Angular',
   by:'Google'
 },
 {
   name:'React',
   by:'Facebook'
 },
 {
   name:'Vue',
   by:'Evan'
 }
]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>javascript</category>
      <category>node</category>
    </item>
    <item>
      <title>Find a place for Placeholder!</title>
      <dc:creator>Akash P</dc:creator>
      <pubDate>Sat, 28 Mar 2020 16:56:17 +0000</pubDate>
      <link>https://dev.to/akashpreet/find-a-place-for-placeholder-1a96</link>
      <guid>https://dev.to/akashpreet/find-a-place-for-placeholder-1a96</guid>
      <description>&lt;h1&gt;
  
  
  Placeholder
&lt;/h1&gt;

&lt;p&gt;A &lt;em&gt;Placeholder&lt;/em&gt; is a person or thing that occupies the position or place of another place or thing. In a computer world, a placeholder can be text, images, JSON, etc.&lt;br&gt;
Here are some of the cool placeholder resources that are found on the web for developers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Text Placeholder :&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://loremipsum.io/"&gt;https://loremipsum.io/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.lipsum.com/"&gt;https://www.lipsum.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Image Placeholder :&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://picsum.photos/"&gt;https://picsum.photos/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://placeholder.com/"&gt;https://placeholder.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JSON Placeholder:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://jsonplaceholder.typicode.com/"&gt;https://jsonplaceholder.typicode.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Comment on some cool placeholder resources that you have come across below.&lt;/p&gt;

</description>
      <category>html</category>
      <category>javascript</category>
      <category>api</category>
    </item>
    <item>
      <title>Let's play this</title>
      <dc:creator>Akash P</dc:creator>
      <pubDate>Thu, 26 Mar 2020 16:54:40 +0000</pubDate>
      <link>https://dev.to/akashpreet/let-s-play-this-2ped</link>
      <guid>https://dev.to/akashpreet/let-s-play-this-2ped</guid>
      <description>&lt;p&gt;Front-End developers -&lt;br&gt;
Guess what is it&lt;br&gt;
template&amp;gt;(header&amp;gt;ul&amp;gt;li*3&amp;gt;a)+footer ?&lt;/p&gt;

&lt;p&gt;Ans: Its called Emmet&lt;br&gt;
Output for the above Emmet:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   &amp;lt;template&amp;gt;
       &amp;lt;header&amp;gt;
           &amp;lt;ul&amp;gt;
               &amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
               &amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
               &amp;lt;li&amp;gt;&amp;lt;a href=""&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
           &amp;lt;/ul&amp;gt;
       &amp;lt;/header&amp;gt;
       &amp;lt;footer&amp;gt;&amp;lt;/footer&amp;gt;
   &amp;lt;/template&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;How cool is it ?&lt;/p&gt;

&lt;p&gt;Check how to use it&lt;br&gt;
&lt;a href="https://docs.emmet.io/"&gt;https://docs.emmet.io/&lt;/a&gt;&lt;br&gt;
Cheat-sheet&lt;br&gt;
&lt;a href="https://docs.emmet.io/cheat-sheet/"&gt;https://docs.emmet.io/cheat-sheet/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>vscode</category>
    </item>
  </channel>
</rss>
