<?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: placido</title>
    <description>The latest articles on DEV Community by placido (@placidovenegas).</description>
    <link>https://dev.to/placidovenegas</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%2F1166906%2F9e4214f0-6e3f-4639-b70c-a9f3bc5b0a42.png</url>
      <title>DEV Community: placido</title>
      <link>https://dev.to/placidovenegas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/placidovenegas"/>
    <language>en</language>
    <item>
      <title>prueba de osttt</title>
      <dc:creator>placido</dc:creator>
      <pubDate>Thu, 21 Sep 2023 18:00:28 +0000</pubDate>
      <link>https://dev.to/placidovenegas/prueba-de-osttt-14h5</link>
      <guid>https://dev.to/placidovenegas/prueba-de-osttt-14h5</guid>
      <description>&lt;p&gt;es to es una prueba&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { notFound } from "next/navigation";

export async function fetchPosts() {
  console.log(process.env.NEXT_PUBLIC_DEVTO_USERNAME);
  const res = await fetch(
    `https://dev.to/api/articles?username=${process.env.NEXT_PUBLIC_DEVTO_USERNAME}`,
    {
      next: { revalidate: 3 * 60 * 60 },
    }
  );

  if (!res.ok) notFound();
  return res.json();
}

export async function fetchPost(slug) {
  const res = await fetch(
    `https://dev.to/api/articles/${process.env.NEXT_PUBLIC_DEVTO_USERNAME}/${slug}`,
    {
      next: { revalidate: 3 * 60 * 60 },
    }
  );

  if (!res.ok) notFound();
  return res.json();
}

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>prueba de post</title>
      <dc:creator>placido</dc:creator>
      <pubDate>Thu, 21 Sep 2023 12:36:05 +0000</pubDate>
      <link>https://dev.to/placidovenegas/prueba-de-post-31gk</link>
      <guid>https://dev.to/placidovenegas/prueba-de-post-31gk</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div className="grid grid-cols-1 md:grid-cols-2 gap-4 py-8 text-white"&amp;gt;
      {posts.map((post, index) =&amp;gt; (
        &amp;lt;Link key={index} href={`/blog/${post.slug}`}&amp;gt;
          {post.title}
        &amp;lt;/Link&amp;gt;
      ))}
    &amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
  </channel>
</rss>
