<?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: Magima Felix O</title>
    <description>The latest articles on DEV Community by Magima Felix O (@magimart).</description>
    <link>https://dev.to/magimart</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%2F581205%2F6fec9a7d-fb57-4cf4-b160-556e9881a8d7.jpeg</url>
      <title>DEV Community: Magima Felix O</title>
      <link>https://dev.to/magimart</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/magimart"/>
    <language>en</language>
    <item>
      <title>problem with image/video loading in Next js</title>
      <dc:creator>Magima Felix O</dc:creator>
      <pubDate>Tue, 16 Mar 2021 13:17:06 +0000</pubDate>
      <link>https://dev.to/magimart/problem-with-image-video-loading-in-next-js-1h37</link>
      <guid>https://dev.to/magimart/problem-with-image-video-loading-in-next-js-1h37</guid>
      <description>&lt;p&gt;Hello Next Js Developers&lt;br&gt;
I have had this problem for days now.&lt;br&gt;
How does one go about it.&lt;br&gt;
Iam am trying to add a background Image/Video on A Next js Page(component). But does not really work!&lt;/p&gt;

&lt;p&gt;/_______________&lt;strong&gt;&lt;em&gt;here is the error&lt;/em&gt;&lt;/strong&gt;____________________&lt;/p&gt;

&lt;p&gt;Failed to compile&lt;br&gt;
./pages/clip/elephant.jpg 1:0&lt;br&gt;
Module parse failed: Unexpected character '�' (1:0)&lt;br&gt;
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See &lt;a href="https://webpack.js.org/concepts#loaders"&gt;https://webpack.js.org/concepts#loaders&lt;/a&gt;&lt;br&gt;
(Source code omitted for this binary file)&lt;/p&gt;

&lt;p&gt;/__________i have tried to go through webpack docs but all in vain&lt;br&gt;
Thank and happy day of coding!!!!!&lt;/p&gt;

</description>
      <category>nextjs</category>
    </item>
    <item>
      <title>Help with includes() in js</title>
      <dc:creator>Magima Felix O</dc:creator>
      <pubDate>Thu, 18 Feb 2021 22:31:42 +0000</pubDate>
      <link>https://dev.to/magimart/help-with-includes-in-js-20pa</link>
      <guid>https://dev.to/magimart/help-with-includes-in-js-20pa</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; ANY HELP WITH JAVASCRIPT includes() function
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const formA = [
    {id:37,name:'New',another:'things'},
    {id:31,name:'Old',another:'things'},           
    {id:3,name:'Oldest',another:'things'}
 ];

 const formB = [
    {id:37,name:'New',another:'things'},
   {id:31,name:'Old',another:'things'},          
   ];

   const difference = formA.filter(x =&amp;gt; !formB.includes(x.name))
   console.log(difference); 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;would someone kindly explain to me how includes() method works?&lt;br&gt;
 i was expecting____ [{id:3,name:'Oldest',another:'things'}] as output&lt;/p&gt;




&lt;p&gt;but instead getting.&lt;/p&gt;

&lt;p&gt;//__________output&lt;br&gt;
  [&lt;br&gt;
    { id: 37, name: 'New', another: 'things' },&lt;br&gt;
    { id: 31, name: 'Old', another: 'things' },&lt;br&gt;
    { id: 3, name: 'Oldest', another: 'things' }&lt;br&gt;
  ]&lt;/p&gt;

</description>
      <category>filter</category>
      <category>includes</category>
    </item>
  </channel>
</rss>
