<?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: Ashique Billa Molla</title>
    <description>The latest articles on DEV Community by Ashique Billa Molla (@devash98).</description>
    <link>https://dev.to/devash98</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%2F701217%2Fd67edc28-47a2-4e56-857d-a76e46b51dd8.jpg</url>
      <title>DEV Community: Ashique Billa Molla</title>
      <link>https://dev.to/devash98</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/devash98"/>
    <language>en</language>
    <item>
      <title>Basic Popular Use Cases of Git</title>
      <dc:creator>Ashique Billa Molla</dc:creator>
      <pubDate>Sun, 19 Jun 2022 18:40:59 +0000</pubDate>
      <link>https://dev.to/devash98/basic-popular-use-cases-of-git-5f52</link>
      <guid>https://dev.to/devash98/basic-popular-use-cases-of-git-5f52</guid>
      <description>&lt;p&gt;So, all the people out there who are writing fabulous codes that has to be backed up somewhere. The changes you are making in your code on the way of developing some applications, you must keep track on that. And also while you are in a team, everyone's collaboration has to be summed up nicely. And for that we have a great Version Control System (VCS), Git.&lt;/p&gt;

&lt;p&gt;In this post I have stated some basics and popular applications of git which will help you while you are using git repositories (repos) like GitHub or Azure DevOps (ADO) repos.&lt;/p&gt;

&lt;p&gt;I have answered the following questions designing some cases:&lt;br&gt;
    How to create a git repository in the local as well as in the remote repos?&lt;br&gt;
    How to push your code?&lt;br&gt;
    How to pull your code? &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Case I- Create a Remote Repository and Clone It to Your Local:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step1&lt;/strong&gt;. Create a repo in the ADO Repository section or in the GitHub by providing a title to your project.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step2&lt;/strong&gt;. A project is created generally with a 'main' branch. But it is always better and standard way to create a new branch and work on that new branch. So create a new branch, by clicking on the dropdown where you see 'main'. I have created the new branch and named it as 'first-branch'.&lt;br&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%2Fj6i627s2xtugrwkoj2k5.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%2Fj6i627s2xtugrwkoj2k5.PNG" alt="Create A Branch"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step3&lt;/strong&gt;. Copy the link of the remote repo to your clipboard.&lt;br&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%2Fyfp5tkixb0i2bton98ni.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%2Fyfp5tkixb0i2bton98ni.PNG" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now It's time to bring the repo into your local.&lt;br&gt;
&lt;strong&gt;Step4&lt;/strong&gt;. Create a folder in your local at a desired directory.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step5&lt;/strong&gt;. Open your terminal (like command prompt in windows) by selecting all the keywords from your current directory header field and typing cmd. It will directly open the cmd in the current directory. Or just open your terminal and type cd your_current_folder_directory. In my case the folder is Demo_Folder. &lt;br&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%2Fjggt8jh0spntsiwizkqx.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%2Fjggt8jh0spntsiwizkqx.PNG" alt="Open CMD"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step6&lt;/strong&gt;. Type &lt;code&gt;git clone &amp;lt;url&amp;gt;&lt;/code&gt;, the URL you copied. -&amp;gt; You will see a local copy of that remote repository has been created. Now you can build project in your folder.&lt;/p&gt;

&lt;p&gt;After creating a project(adding files in the "cloned" repo) you obviously want it to push in the remote repo. Follow the steps:&lt;br&gt;
&lt;strong&gt;Step7&lt;/strong&gt;.At first open your terminal with the "cloned" folders as the current directory.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step8&lt;/strong&gt;. To know you are on the appropriate branch run the command &lt;code&gt;git branch&lt;/code&gt;. It will show us that we are on main branch as the main branch will be highlighted. But we have to switch the branch. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step9&lt;/strong&gt;. To know all the created branches run &lt;code&gt;git branch -a&lt;/code&gt;.&lt;br&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%2F8a847sbwmvppoxqyelkf.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%2F8a847sbwmvppoxqyelkf.PNG" alt="all branch"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step10&lt;/strong&gt;. Now to switch to the 'first-branch' run &lt;code&gt;git checkout first-branch&lt;/code&gt;.&lt;br&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%2F5zxxb81lptw72zyk4zk7.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%2F5zxxb81lptw72zyk4zk7.PNG" alt="git checkout"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step11&lt;/strong&gt;. Again run the &lt;code&gt;git branch&lt;/code&gt; command to asure that you are on the 'first-branch'.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step12&lt;/strong&gt;. To know what are the files there just run &lt;code&gt;git status&lt;/code&gt;. In my case I have created two files -&amp;gt; index.html and styles.css&lt;br&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%2F99mb9un1k0a2fjceqby7.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%2F99mb9un1k0a2fjceqby7.PNG" alt="git status"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step13&lt;/strong&gt;. Now run &lt;code&gt;git add --all&lt;/code&gt; to "stage" all the files in your repository.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step14&lt;/strong&gt;. &lt;code&gt;git commit -m "&amp;lt;message&amp;gt;"&lt;/code&gt; will commit your code. And within a string you can write your message to indicate the changes and updates you have made.&lt;br&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%2F6w33ycira2lke6re3cv2.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%2F6w33ycira2lke6re3cv2.PNG" alt="Git Commit"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step15&lt;/strong&gt;. Now finally run &lt;code&gt;git push&lt;/code&gt; which will push your codes/ files to the remote repository. Congratulations, you successfully pushed your code. Your git repo will be something like this 👇&lt;br&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%2Fu59v0mtbt2u51fmxootg.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%2Fu59v0mtbt2u51fmxootg.PNG" alt="pushed"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now, every time you update your code just follow the steps from step no. 7 mentioned above to push them.&lt;/p&gt;

&lt;p&gt;Merging the branch:&lt;br&gt;
After your work is complete and you have to merge the manually created branch with the 'main-branch'. Follow the steps below:&lt;br&gt;
&lt;strong&gt;Step16&lt;/strong&gt;. At first you have to create pull request. By clicking on the option Pull request.&lt;br&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%2F4ke7gfc96vg4f4wt1gox.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%2F4ke7gfc96vg4f4wt1gox.PNG" alt="Pull request"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step17&lt;/strong&gt;. Then click on the 'New pull request' button.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step18&lt;/strong&gt;. Compare two branches and after observing the changes click on 'Create pull request' button. Describe your pull request and Create pull request. While you are on a team, basically one reviewer reviews the pull request and approves. Then the approver merges the pull request by clicking on 'Merge pull request'.  button. &lt;br&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%2F9ed2jqum5ny2ba0zsxbk.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%2F9ed2jqum5ny2ba0zsxbk.PNG" alt="Compare two branches"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step19&lt;/strong&gt;. Confirming the merge you have successfully merged the branches and you can delete the custom branch you created.&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%2Floc2ki910xrqmoruoeyz.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%2Floc2ki910xrqmoruoeyz.PNG" alt="Merge pull request"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Case II- Local Project is Already Created:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step1&lt;/strong&gt;. At first create your repo in the cloud(GitHub).&lt;/p&gt;

&lt;p&gt;Now you have to initiate a git repo in that local folder where the project is already present:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step2&lt;/strong&gt;. Open your terminal with the current folder as the current directory. In my case it's 'new-project'&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step3&lt;/strong&gt;. Then run &lt;code&gt;git init&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step4&lt;/strong&gt;. then run &lt;code&gt;git add --all&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step5&lt;/strong&gt;. Run &lt;code&gt;git commit -m "&amp;lt;your_commit_message&amp;gt;&lt;/code&gt; just like step 14 in the previous case.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step6&lt;/strong&gt;. Run &lt;code&gt;git branch -M main&lt;/code&gt; to push the code into main branch. At this time if you check your current branch by using &lt;code&gt;git branch&lt;/code&gt; you will see Main is your branch now.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step7&lt;/strong&gt;. &lt;code&gt;git remote add origin &amp;lt;url&amp;gt;&lt;/code&gt; command will add your remote repo into the local.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step8&lt;/strong&gt;. finally push by using &lt;code&gt;git push -u origin main&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Case III- Syncing Up Local with Remote Repo:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You might face one case when the project is set up in your local but it is not up-to-date. To sync up your local repo with the remote repo just run:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step1&lt;/strong&gt;. &lt;code&gt;git pull&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then the further pushes can be done by following the previously mentioned steps in the case I from 7 to 15.&lt;/p&gt;

&lt;p&gt;Although I have only talked about GitHub repositories but the configurations and user flows are almost the same for ADO Repos. You just have to play around with them. If you observe any further issue while you are pushing your code, comment it here or DM me on &lt;a href="https://twitter.com/dev_ash_twiter" rel="noopener noreferrer"&gt;twitter&lt;/a&gt; or just google it.&lt;/p&gt;

&lt;p&gt;Thank you for reading it. Hope it has helped you. Follow me on &lt;a href="https://twitter.com/dev_ash_twiter" rel="noopener noreferrer"&gt;twitter&lt;/a&gt;, I post about web development. See you on the next article!!&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>azuredevops</category>
      <category>webdev</category>
    </item>
    <item>
      <title>15 Beautiful Color Gradients using CSS</title>
      <dc:creator>Ashique Billa Molla</dc:creator>
      <pubDate>Sun, 12 Jun 2022 07:42:34 +0000</pubDate>
      <link>https://dev.to/devash98/15-beautiful-colour-gradients-using-css-4em1</link>
      <guid>https://dev.to/devash98/15-beautiful-colour-gradients-using-css-4em1</guid>
      <description>&lt;p&gt;👋, I am here with another list. In this post I have enlisted 15 aesthetic color gradients using CSS (examples of colour gradients in CSS) which you can implement in your next projects.&lt;/p&gt;

&lt;p&gt;I have used linear-gradient method of CSS and only the gradient direction 'to bottom left'. There are many others gradient directions like 'to right', 'to top' etc. to read about the linear-gradient method you can refer to this &lt;a href="https://www.freecodecamp.org/news/css-linear-gradient-explained-with-examples/amp/" rel="noopener noreferrer"&gt;freecodecamp&lt;/a&gt; article.&lt;/p&gt;

&lt;p&gt;Let's jump into the list: &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #FF512F, #DD2476);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2F6w0eat86enen7ifje129.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%2F6w0eat86enen7ifje129.PNG" alt="color Gradient 1"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #FF61D2, #FE9090);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fq5jomswng7ecyp404vfr.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%2Fq5jomswng7ecyp404vfr.PNG" alt="Color Gradient 2"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #72FFB6, #10D164);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2F6ljiyy4itzx3o4loop9b.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%2F6ljiyy4itzx3o4loop9b.PNG" alt="Color Gradient 3"&gt;&lt;/a&gt;&lt;br&gt;
4.&lt;/p&gt;

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

background-image: linear-gradient(to bottom right, #FD8451, #FFBD6F);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Flw24f3w7momcprviwyz3.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%2Flw24f3w7momcprviwyz3.PNG" alt="Color Gradient 4"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #305170, #6DFC6B);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fl0n9yttqon5vm86zuxkv.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%2Fl0n9yttqon5vm86zuxkv.PNG" alt="Color Gradient 5"&gt;&lt;/a&gt;&lt;br&gt;
6.&lt;/p&gt;

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

background-image: linear-gradient(to bottom right, #00C0FF, #4218B8);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2F1xxf37dkwn1cbhsjm0g7.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%2F1xxf37dkwn1cbhsjm0g7.PNG" alt="Color Gradient 6"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #009245, #FCEE21);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Ftji2r7awz90joowxi2e1.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%2Ftji2r7awz90joowxi2e1.PNG" alt="Color Gradient 7"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #FDFCFB, #E2D1C3);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fttjeggqnfe22ujbs80qw.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%2Fttjeggqnfe22ujbs80qw.PNG" alt="Color Gradient 8"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #0100EC, #FB36F4);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fhmg1abva11xh9zym2lrc.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%2Fhmg1abva11xh9zym2lrc.PNG" alt="Color Gradient 9"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #FDABDD, #374A5A);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fuu37e1xhbkjqf53joeh9.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%2Fuu37e1xhbkjqf53joeh9.PNG" alt="Color Gradient 10"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #38A2D7, #561139);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fsipb56zggbmjju6dg0y3.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%2Fsipb56zggbmjju6dg0y3.PNG" alt="Color Gradient 11"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #121C84, #8278DA);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fn6ek4gnyiyeonxbh139e.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%2Fn6ek4gnyiyeonxbh139e.PNG" alt="Color Gradient 12"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #5761B2, #1FC5A8);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fx7plzbwro42p84yqdygw.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%2Fx7plzbwro42p84yqdygw.PNG" alt="Colr Gradient 13"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #FFDB01, #0E197D);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fby05kg5p28e03t85pewf.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%2Fby05kg5p28e03t85pewf.PNG" alt="Color Gradient 14"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;/li&gt;
&lt;/ol&gt;

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

background-image: linear-gradient(to bottom right, #FF3E9D, #0E1F40);


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fgwfha8thmmyorarudcty.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%2Fgwfha8thmmyorarudcty.PNG" alt="Color Gradient 15"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Congratulations!! You have successfully read this long list. I have also &lt;a&gt;tweeted&lt;/a&gt; this one, you can bookmark it there for your future reference.&lt;/p&gt;

&lt;p&gt;I have gathered this colourful ideas from Pinterest. &lt;br&gt;
I Hope, you have found it useful. Share the article, comment which one you are going to use and comment your feedbacks as well.&lt;/p&gt;

&lt;p&gt;Also, I write about web development on &lt;a href="https://twitter.com/dev_ash_twiter?t=X3br-RDeGhPGTTOUWgnNGg&amp;amp;s=09" rel="noopener noreferrer"&gt;twitter&lt;/a&gt;, &lt;a href="https://twitter.com/dev_ash_twiter?t=X3br-RDeGhPGTTOUWgnNGg&amp;amp;s=09" rel="noopener noreferrer"&gt;follow&lt;/a&gt; me there for understanding web development technologies easily.&lt;/p&gt;

&lt;p&gt;Thank you!! See you soon...&lt;/p&gt;

</description>
      <category>css</category>
      <category>webdev</category>
      <category>webdesign</category>
    </item>
    <item>
      <title>Midnight Fun- Meme on JavaScript splice( ) 😆</title>
      <dc:creator>Ashique Billa Molla</dc:creator>
      <pubDate>Tue, 07 Jun 2022 18:28:06 +0000</pubDate>
      <link>https://dev.to/devash98/midnight-fun-sharing-meme-49g2</link>
      <guid>https://dev.to/devash98/midnight-fun-sharing-meme-49g2</guid>
      <description>&lt;p&gt;splice() method is used on javascript array to remove element. &lt;br&gt;
The syntax is:&lt;br&gt;
&lt;code&gt;splice(start_index, delete_count(optional),item(optional))&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;One use case I found on twitter 😂&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--yaGd5wT4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jd2n35131zdm33p8g2j5.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--yaGd5wT4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jd2n35131zdm33p8g2j5.jpg" alt="the image" width="880" height="438"&gt;&lt;/a&gt;&lt;br&gt;
The reply I got🤣:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6YHYcAwN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o194nls9ns83jhugjckx.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6YHYcAwN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o194nls9ns83jhugjckx.jpg" alt="The Reply" width="880" height="163"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Comment what does it mean and comment your reaction on it!!&lt;/p&gt;

&lt;p&gt;Also the splice () method can be used to add, remove, update array elements. To understand it read my tweet 👇&lt;br&gt;
&lt;a href="https://twitter.com/dev_ash_twiter/status/1526261975088615429?t=FxQsRkYq2xbEwM7c6GeyGQ&amp;amp;s=19"&gt;JavaScript splice() method&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks...&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>jokes</category>
      <category>javascript</category>
    </item>
    <item>
      <title>10 Cool Rest APIs for Your Next Projects</title>
      <dc:creator>Ashique Billa Molla</dc:creator>
      <pubDate>Sun, 05 Jun 2022 06:41:56 +0000</pubDate>
      <link>https://dev.to/devash98/10-cool-rest-apis-for-your-next-projects-c4f</link>
      <guid>https://dev.to/devash98/10-cool-rest-apis-for-your-next-projects-c4f</guid>
      <description>&lt;p&gt;Finally, I have clicked the blue 'Write your first post now' button on the dev.to/dashboard page. Yes, Beautiful folks, here I am with my first blog post ever. In this article I have jotted down some REST APIs which will help you to consume needful data for your next websites. For the first 8 in the below list you do not even need to sign up!!🤘 Let's get started:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://jsonplaceholder.typicode.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;JSON Place holder&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
JSON placeholder API is a very good API for beginners. This API comes with 6 common resources (comments, albums, photos, todos and users). You can also use their &lt;a href="https://mockend.com/" rel="noopener noreferrer"&gt;Mockend&lt;/a&gt; service to create your own API. However it is a paid version.&lt;br&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%2F6pgwarr7xgsa6ohpedgi.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%2F6pgwarr7xgsa6ohpedgi.png" alt="JSON Place holder ScreenShot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://picsum.photos/" rel="noopener noreferrer"&gt;&lt;strong&gt;Lorem Picsum&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
To give your website an outstanding look, you have to embed photos and this Lorem Picsum API is photo factory. This is an wonderful API with the collection of pictures. By using various routes and query params (as stated in the documentation) you can fetch pictures of several size and categories.&lt;br&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%2Fjzd4ol89o03imtylqw97.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%2Fjzd4ol89o03imtylqw97.png" alt="Lorem Picsum ScreenShot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://pokeapi.co/" rel="noopener noreferrer"&gt;&lt;strong&gt;PokeAPI&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
This is a RESTful API with all the Pokémon data in one place.&lt;br&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%2F57yz083sga0cul44gvvy.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%2F57yz083sga0cul44gvvy.png" alt="PokeAPI ScreenShot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://swapi.dev/" rel="noopener noreferrer"&gt;&lt;strong&gt;The Star Wars API&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
The Star Wars API aka SWAPI have consolidated all the first 7 star wars movie data for us.&lt;br&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%2Fczzpjvw6906f4vxfv40c.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%2Fczzpjvw6906f4vxfv40c.png" alt="The Star Wars API ScreenShot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://rickandmortyapi.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;The Rick and Morty API&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
This one is a very interesting API with all the Rick &amp;amp; Morty sitcom character data. You can also apply filter, search and pagination functionality while consuming this API. &lt;a href="https://www.freecodecamp.org/news/react-js-project-build-a-rick-and-morty-character-wiki/" rel="noopener noreferrer"&gt;Here&lt;/a&gt; is a very good project for beginners to learn react using this API.&lt;br&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%2Fq3l9h7emvs1dlplpsr4e.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%2Fq3l9h7emvs1dlplpsr4e.png" alt="The Rick and Morty API ScreenShot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://fakestoreapi.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;Fake Store API&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
This is a free e-commerce API. You can consume it while you are making an e-commerce or shopping website without running any server-side code.&lt;br&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%2Ftr1ygz9z4u518cltyo3u.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%2Ftr1ygz9z4u518cltyo3u.png" alt="Fake Store API ScreenShot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://restcountries.com/" rel="noopener noreferrer"&gt;&lt;strong&gt;REST Countries&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
Using this API you can get information about countries. This RESTful API's new version has added couple of new features along with search functionality. Refer the official documentation to get started.&lt;br&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%2Ffrcr9f24r006v5w6q5nc.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%2Ffrcr9f24r006v5w6q5nc.png" alt="REST Countries ScreenShot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://openlibrary.org/developers/api" rel="noopener noreferrer"&gt;&lt;strong&gt;OPEN Library API&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
A bunch of APIs is provided by the Open Library. Calling this API in your project you can exhibit books by authors, subject etc.&lt;br&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%2Fltzx0uiepfhuuda93fh9.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%2Fltzx0uiepfhuuda93fh9.png" alt="OPEN Library API ScreenShot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://openweathermap.org/api" rel="noopener noreferrer"&gt;&lt;strong&gt;Weather API&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
You must have thought once to build an weather app. Weather API is the resource you need for that. This API needs API key to authorize. &lt;br&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%2Fro3r0ca1jdzg892dbjbb.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%2Fro3r0ca1jdzg892dbjbb.png" alt="Weather API Screenshot"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://api.nasa.gov/" rel="noopener noreferrer"&gt;&lt;strong&gt;NASA API&lt;/strong&gt;&lt;/a&gt;:&lt;br&gt;
This website has listed super cool APIs provided by NASA with NASA data, including imagery. You do not need to authenticate in order to explore the NASA data. However, if you will be intensively using the APIs to, say, support a mobile application, then you should sign up for a NASA developer key.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&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%2Fkld5xhywymck2v5800ic.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%2Fkld5xhywymck2v5800ic.png" alt="NASA Screenshot"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That was all spectacular REST APIs for the time being. Hopefully, you have found this list helpful. I would love to know which one you have used or you are going to use, comment below👇. If you enjoyed this article share it with your friends. Also feel free to reach out to me if you have  any feedback or facing any issue while fetching the APIs. Follow me on twitter &lt;a href="https://twitter.com/dev_ash_twiter" rel="noopener noreferrer"&gt;ashique&lt;/a&gt; for learning web development easily. Thanks and see you in the next one, Happy coding!! 😁&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>api</category>
      <category>react</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
