<?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: sinanisler</title>
    <description>The latest articles on DEV Community by sinanisler (@sinanisler).</description>
    <link>https://dev.to/sinanisler</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%2F1156601%2F7f45aed1-c645-43f7-b18e-5ef4b515d635.jpeg</url>
      <title>DEV Community: sinanisler</title>
      <link>https://dev.to/sinanisler</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sinanisler"/>
    <language>en</language>
    <item>
      <title>Stable Diffusion High Quality HD Images</title>
      <dc:creator>sinanisler</dc:creator>
      <pubDate>Tue, 12 Sep 2023 16:38:03 +0000</pubDate>
      <link>https://dev.to/sinanisler/stable-diffusion-high-quality-hd-images-i1o</link>
      <guid>https://dev.to/sinanisler/stable-diffusion-high-quality-hd-images-i1o</guid>
      <description>&lt;p&gt;Created a small website for myself making a nice orderly Stable Diffusion generations.&lt;/p&gt;

&lt;p&gt;I only upload the HD images here. Trying to keep the quality very high.&lt;/p&gt;

&lt;p&gt;Sharing the prompts and models informations so people can replicate same or similar results.&lt;/p&gt;

&lt;p&gt;Have a look if you have recommendations what features can be added to the site please give feedback.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://stable-diffusion.app/"&gt;Stable Diffusion&lt;/a&gt;.app&lt;/p&gt;

&lt;p&gt;I plan to add API and generation system later on.&lt;br&gt;
Maybe adding rating system to the images not sure about this one tho rating things are pretty relative for everything.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--QNMVAe8M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/42wpe4ad9ok1zhv180uz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--QNMVAe8M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/42wpe4ad9ok1zhv180uz.png" alt="Image description" width="800" height="457"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thank you 🤗&lt;/p&gt;

</description>
      <category>stablediffusion</category>
    </item>
    <item>
      <title>How to Detect GPT Articles</title>
      <dc:creator>sinanisler</dc:creator>
      <pubDate>Fri, 08 Sep 2023 15:48:10 +0000</pubDate>
      <link>https://dev.to/sinanisler/how-to-detect-gpt-articles-2gfp</link>
      <guid>https://dev.to/sinanisler/how-to-detect-gpt-articles-2gfp</guid>
      <description>&lt;p&gt;There is lots of GPT articles here that some of them feels like spam 🤣&lt;/p&gt;

&lt;p&gt;Dont get me wrong I like GPT assisted codes and solutions. But not articles 😉&lt;/p&gt;

&lt;p&gt;Lots of unintelligent "best bla bla bla tools" "best bla bla libraries"&lt;/p&gt;

&lt;p&gt;Anyway here is 4 website and tools you can copy paste text to detect GPT / AI articles.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.zerogpt.com/"&gt;https://www.zerogpt.com/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://gptzero.me/"&gt;https://gptzero.me/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://contentatscale.ai/ai-content-detector/"&gt;https://contentatscale.ai/ai-content-detector/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://x.writefull.com/gpt-detector"&gt;https://x.writefull.com/gpt-detector&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I recommend using more than one dont trust only one tool because sometimes they may give false possitives.&lt;/p&gt;

</description>
      <category>gpt3</category>
      <category>gpt4</category>
      <category>ai</category>
      <category>spam</category>
    </item>
    <item>
      <title>Display Current Year Short Code, WordPress</title>
      <dc:creator>sinanisler</dc:creator>
      <pubDate>Fri, 08 Sep 2023 15:37:35 +0000</pubDate>
      <link>https://dev.to/sinanisler/display-current-year-short-code-596k</link>
      <guid>https://dev.to/sinanisler/display-current-year-short-code-596k</guid>
      <description>&lt;p&gt;Add this to your functions.php&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function display_current_year() {
    return date('Y');
}
add_shortcode('current_year', 'display_current_year');

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

&lt;/div&gt;



&lt;p&gt;This code will allow you to use [current_year] in your posts or pages, and it will output the current year.&lt;/p&gt;

&lt;p&gt;Once the code is added to your theme or plugin, you can simply insert [current_year] anywhere in your posts, pages, or widgets to display the current year.&lt;/p&gt;

&lt;p&gt;have fun with this little snippet :)&lt;/p&gt;

&lt;p&gt;if you need more snippets like this have look at my tiny library &lt;a href="https://sinanisler.com/#codex"&gt;sinanisler.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>wordpress</category>
      <category>php</category>
    </item>
  </channel>
</rss>
