<?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: rahul d</title>
    <description>The latest articles on DEV Community by rahul d (@rahul_d_69c56a981e11c6728).</description>
    <link>https://dev.to/rahul_d_69c56a981e11c6728</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%2F2972307%2Fd937db00-ad8c-42e6-ba70-73bd6e66a4c5.jpeg</url>
      <title>DEV Community: rahul d</title>
      <link>https://dev.to/rahul_d_69c56a981e11c6728</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rahul_d_69c56a981e11c6728"/>
    <language>en</language>
    <item>
      <title>writer in GeeksforGeeks</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Fri, 04 Apr 2025 04:01:01 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/writer-in-geeksforgeeks-649</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/writer-in-geeksforgeeks-649</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source  models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;p&gt;I strongly  believe, growing as a community is more important than growing as an individual. Let us make it simple, if I share my knowledge about statistics topic in a community, machine learning enthusiast will use it for a different purpose whereas someone who is working on IoT project uses it in a different way&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  AI Quick Actions One
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Healthcare organizations handle  large volumes of sensitive data&lt;/li&gt;
&lt;li&gt;HIPAA and HITECH regulations&lt;/li&gt;
&lt;li&gt;workflows across departments&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.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%2F44jvsief630a3wsdsrn0.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2F44jvsief630a3wsdsrn0.jpg" alt="Image description" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The importance of access
&lt;/h2&gt;

&lt;p&gt;Healthcare organizations handle large volumes of sensitive data on a regular basis. With growing cyber threats, regulatory requirements, such as &lt;a href="https://dev.to/rahul_d_69c56a981e11c6728/to-learn-more-about-ai-quick-actions-l6b/edit"&gt;HIPAA&lt;/a&gt; and HITECH regulations, and complex workflows across departments, managing access to patient data is crucial.&lt;/p&gt;

&lt;h2&gt;
  
  
  Integration with Oracle Health EHR
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Visibility into who has access

&lt;ul&gt;
&lt;li&gt;Automated access controls&lt;/li&gt;
&lt;li&gt;  Role and policy management&lt;/li&gt;
&lt;li&gt;  Access request&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Compliance auditing&lt;/li&gt;

&lt;li&gt;Risk analysis&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Approach to managing user access across
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Enhanced security

&lt;ol&gt;
&lt;li&gt; Streamlined onboarding and offboarding&lt;/li&gt;
&lt;li&gt;  Dynamic access control&lt;/li&gt;
&lt;li&gt;  Time and cost efficiency&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;

&lt;li&gt;Compliance management&lt;/li&gt;

&lt;/ol&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>My experience as technical content</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Fri, 04 Apr 2025 03:46:37 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/my-experience-as-technical-content-21a6</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/my-experience-as-technical-content-21a6</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source  models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;p&gt;I strongly  believe, growing as a community is more important than growing as an individual. Let us make it simple, if I share my knowledge about statistics topic in a community, machine learning enthusiast will use it for a different purpose whereas someone who is working on IoT project uses it in a different way&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  AI Quick Actions One
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Healthcare organizations handle  large volumes of sensitive data&lt;/li&gt;
&lt;li&gt;HIPAA and HITECH regulations&lt;/li&gt;
&lt;li&gt;workflows across departments&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.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%2F44jvsief630a3wsdsrn0.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2F44jvsief630a3wsdsrn0.jpg" alt="Image description" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The importance of access
&lt;/h2&gt;

&lt;p&gt;Healthcare organizations handle large volumes of sensitive data on a regular basis. With growing cyber threats, regulatory requirements, such as &lt;a href="https://dev.to/rahul_d_69c56a981e11c6728/to-learn-more-about-ai-quick-actions-l6b/edit"&gt;HIPAA&lt;/a&gt; and HITECH regulations, and complex workflows across departments, managing access to patient data is crucial.&lt;/p&gt;

&lt;h2&gt;
  
  
  Integration with Oracle Health EHR
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Visibility into who has access

&lt;ul&gt;
&lt;li&gt;Automated access controls&lt;/li&gt;
&lt;li&gt;  Role and policy management&lt;/li&gt;
&lt;li&gt;  Access request&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Compliance auditing&lt;/li&gt;

&lt;li&gt;Risk analysis&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Approach to managing user access across
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Enhanced security

&lt;ol&gt;
&lt;li&gt; Streamlined onboarding and offboarding&lt;/li&gt;
&lt;li&gt;  Dynamic access control&lt;/li&gt;
&lt;li&gt;  Time and cost efficiency&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;

&lt;li&gt;Compliance management&lt;/li&gt;

&lt;/ol&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Once the Java Sustaining</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Thu, 03 Apr 2025 10:56:30 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/once-the-java-sustaining-1847</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/once-the-java-sustaining-1847</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  AI Quick Actions One
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Healthcare organizations handle large volumes of sensitive data&lt;/li&gt;
&lt;li&gt;HIPAA and HITECH regulations&lt;/li&gt;
&lt;li&gt;workflows across departments&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.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%2F44jvsief630a3wsdsrn0.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2F44jvsief630a3wsdsrn0.jpg" alt="Image description" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The importance of access
&lt;/h2&gt;

&lt;p&gt;Healthcare organizations handle large volumes of sensitive data on a regular basis. With growing cyber threats, regulatory requirements, such as &lt;a href="https://dev.to/rahul_d_69c56a981e11c6728/to-learn-more-about-ai-quick-actions-l6b/edit"&gt;HIPAA&lt;/a&gt; and HITECH regulations, and complex workflows across departments, managing access to patient data is crucial.&lt;/p&gt;

&lt;h2&gt;
  
  
  Integration with Oracle Health EHR
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Visibility into who has access

&lt;ul&gt;
&lt;li&gt;Automated access controls&lt;/li&gt;
&lt;li&gt;  Role and policy management&lt;/li&gt;
&lt;li&gt;  Access request&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Compliance auditing&lt;/li&gt;

&lt;li&gt;Risk analysis&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Approach to managing user access across
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Enhanced security

&lt;ol&gt;
&lt;li&gt; Streamlined onboarding and offboarding&lt;/li&gt;
&lt;li&gt;  Dynamic access control&lt;/li&gt;
&lt;li&gt;  Time and cost efficiency&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;

&lt;li&gt;Compliance management&lt;/li&gt;

&lt;/ol&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>To learn more about AI Quick Actions</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Wed, 02 Apr 2025 08:22:25 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/to-learn-more-about-ai-quick-actions-l6b</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/to-learn-more-about-ai-quick-actions-l6b</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>OCI Data Science enables customers to work</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Wed, 02 Apr 2025 08:21:23 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/oci-data-science-enables-customers-to-work-1la8</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/oci-data-science-enables-customers-to-work-1la8</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>The next evolution of artificial intelligence</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Wed, 02 Apr 2025 08:19:31 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/the-next-evolution-of-artificial-intelligence-4062</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/the-next-evolution-of-artificial-intelligence-4062</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>OCI Language v4.1: Enhanced accuracy, control</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Wed, 02 Apr 2025 08:18:36 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/oci-language-v41-enhanced-accuracy-control-1f75</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/oci-language-v41-enhanced-accuracy-control-1f75</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Register new model card in the Model Explorer</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Wed, 02 Apr 2025 04:57:16 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/register-new-model-card-in-the-model-explorer-2b65</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/register-new-model-card-in-the-model-explorer-2b65</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Model on OCI Data Science</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Wed, 02 Apr 2025 03:10:47 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/model-on-oci-data-science-1d6d</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/model-on-oci-data-science-1d6d</guid>
      <description>&lt;h2&gt;
  
  
  Introducing Llama 3.3
&lt;/h2&gt;

&lt;p&gt;The model is available to be downloaded from Meta’s website and on Hugging Face, an online model repository. Oracle Cloud Infrastructure (OCI) Data Science is a platform for data scientists and developers to work with open source models powered by OCI’s compute infrastructure with features that support the entire machine learning lifecycle. You can bring in Llama 3.3 70B Instruct from either Hugging Face or Meta to use inside OCI Data Science. OCI Data Science offers AI Quick Actions, a no-code &lt;br&gt;
solution for customers to seamlessly manage, deploy, fine-&lt;br&gt;
tune, and evaluate large language models inside our &lt;br&gt;
platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Quick Actions
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You can access AI Quick Actions from a Data Science notebook&lt;/li&gt;
&lt;li&gt;AI Quick Actions, see About AI Quick Actions&lt;/li&gt;
&lt;li&gt;AI Quick Actions has a Hugging Face integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Model
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class BlogCategory(models.Model):
        name = models.CharField(max_length=100, unique=True)
        description = models.TextField(blank=True, null=True)
        slug = models.SlugField(max_length=100, unique=True, blank=True)
        created_at = models.DateTimeField(auto_now_add=True)
        updated_at = models.DateTimeField(auto_now=True)

        def save(self, *args, **kwargs):
            if not self.slug:
                self.slug = slugify(self.name)  
            super().save(*args, **kwargs)

        def __str__(self):
            return self.name

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

&lt;/div&gt;



</description>
      <category>react</category>
      <category>python</category>
      <category>productivity</category>
      <category>aws</category>
    </item>
    <item>
      <title>models</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Wed, 02 Apr 2025 02:53:10 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/models-21l2</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/models-21l2</guid>
      <description>&lt;h2&gt;
  
  
  Globalizing Productions with Netflix’s Media Production Suite
&lt;/h2&gt;

&lt;p&gt;The journey from script to screen is full of challenges in the ever-evolving world of film and television. The industry has always innovated, and over the last decade, it started moving towards cloud-based workflows. However, unlocking cloud &lt;a href="https://dev.to/new"&gt;innovation&lt;/a&gt; and all its benefits on a global scale has proven to be difficult. The opportunity is clear: streamline complex media management logistics, eliminate tedious, non-creative task-based work and enable productions to focus on what matters most–creative storytelling. With these challenges in mind, Netflix &lt;br&gt;
has developed a suite of tools by filmmakers for filmmakers: the Media Production Suite &lt;/p&gt;

&lt;h2&gt;
  
  
  What are we solving for?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Significant time and resources are devoted &lt;/li&gt;
&lt;li&gt;workflows are fully digital&lt;/li&gt;
&lt;li&gt;Moving media into the cloud introduces &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The challenge of building a global technology to solve this
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class Tag(models.Model):
    name = models.CharField(max_length=100, unique=True)
    slug = models.SlugField(max_length=50, unique=True, blank=True)
    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now=True)

    def save(self, *args, **kwargs):
        if not self.slug:
            self.slug = slugify(self.name)  
        super().save(*args, **kwargs)

    def __str__(self):
        return self.name
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Model57</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Sat, 29 Mar 2025 11:33:49 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/model57-4l7h</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/model57-4l7h</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;Setup&lt;/strong&gt; a blog with Hugo and Github Pages
&lt;/h2&gt;

&lt;p&gt;It was &lt;strong&gt;long&lt;/strong&gt; my &lt;em&gt;desire&lt;/em&gt; to write a blog with stuff that interests me.&lt;/p&gt;

&lt;p&gt;Lately i was studying &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Golang&lt;/a&gt; and i came across &lt;a href="https://dev.to/new"&gt;Hugo&lt;/a&gt; which is a really nice and fast site generation utility.&lt;/p&gt;

&lt;p&gt;using Hugo and Github Pages in order to host it. Why?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;it's free&lt;/li&gt;
&lt;li&gt;it's &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;it's easy and fast&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Steps
&lt;/h3&gt;

&lt;p&gt;The following steps are needed for the initial setup and creation of the blog:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github&lt;/a&gt; repository for source code of the blog&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt; repository for the generated site&lt;/li&gt;
&lt;li&gt;Setup &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Hugo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Create blog&lt;/li&gt;
&lt;li&gt;Publish blog to &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  1. &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github&lt;/a&gt; repository for source code of the blog
&lt;/h3&gt;

&lt;p&gt;Follow the instruction on &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt; to create a repository with your &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github&lt;/a&gt; username. Clone it to your local drive.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Setup Hugo
&lt;/h3&gt;

&lt;p&gt;Download &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Hugo&lt;/a&gt; to your local drive. Unpack it to a folder and set the path in your OS to the executable. Almost all OS are supported!!!&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Create blog
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Create a folder for your blog source code and &lt;code&gt;cd&lt;/code&gt; into it.&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;hugo new site&lt;/code&gt; .&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git init&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Add as remote repository the repository created in Step 1. (&lt;code&gt;git remote add origin https://github.com/{username}/{repository}.git&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Add &lt;code&gt;.gitignore&lt;/code&gt; file to exclude the path &lt;code&gt;public/&lt;/code&gt;, which is the default directory of the generated static files&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git add&lt;/code&gt; .&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git commit -m "initial commit"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git push -u origin master&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5. Publish blog to &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;When we are ready to deploy our blog we do the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Execute &lt;code&gt;hugo -d {path}&lt;/code&gt;, where path is the cloned repository path from step 2&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;cd&lt;/code&gt;into the above path&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git add .&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git commit -m "initial commit"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git push origin master&lt;/code&gt;
After this we can enjoy our newly created blog under &lt;code&gt;http://{username}.github.io&lt;/code&gt; where username should be replaced with your &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github's&lt;/a&gt; username.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.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%2Fz7rrb9nxuskyonxf8ijk.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2Fz7rrb9nxuskyonxf8ijk.jpg" alt="Tech" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/YDsS38QkI6M"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Code Model
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class Tag(models.Model):
    name = models.CharField(max_length=100, unique=True)
    slug = models.SlugField(max_length=50, unique=True, blank=True)
    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now=True)

    def save(self, *args, **kwargs):
        if not self.slug:
            self.slug = slugify(self.name)  
        super().save(*args, **kwargs)

    def __str__(self):
        return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Models46</title>
      <dc:creator>rahul d</dc:creator>
      <pubDate>Sat, 29 Mar 2025 10:46:51 +0000</pubDate>
      <link>https://dev.to/rahul_d_69c56a981e11c6728/models46-n5n</link>
      <guid>https://dev.to/rahul_d_69c56a981e11c6728/models46-n5n</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;Setup&lt;/strong&gt; a blog with Hugo and Github Pages
&lt;/h2&gt;

&lt;p&gt;It was &lt;strong&gt;long&lt;/strong&gt; my &lt;em&gt;desire&lt;/em&gt; to write a blog with stuff that interests me.&lt;/p&gt;

&lt;p&gt;Lately i was studying &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Golang&lt;/a&gt; and i came across &lt;a href="https://dev.to/new"&gt;Hugo&lt;/a&gt; which is a really nice and fast site generation utility.&lt;/p&gt;

&lt;p&gt;using Hugo and Github Pages in order to host it. Why?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;it's free&lt;/li&gt;
&lt;li&gt;it's &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;it's easy and fast&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Steps
&lt;/h3&gt;

&lt;p&gt;The following steps are needed for the initial setup and creation of the blog:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github&lt;/a&gt; repository for source code of the blog&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt; repository for the generated site&lt;/li&gt;
&lt;li&gt;Setup &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Hugo&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Create blog&lt;/li&gt;
&lt;li&gt;Publish blog to &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  1. &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github&lt;/a&gt; repository for source code of the blog
&lt;/h3&gt;

&lt;p&gt;Follow the instruction on &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt; to create a repository with your &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github&lt;/a&gt; username. Clone it to your local drive.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Setup Hugo
&lt;/h3&gt;

&lt;p&gt;Download &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Hugo&lt;/a&gt; to your local drive. Unpack it to a folder and set the path in your OS to the executable. Almost all OS are supported!!!&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Create blog
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Create a folder for your blog source code and &lt;code&gt;cd&lt;/code&gt; into it.&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;hugo new site&lt;/code&gt; .&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git init&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Add as remote repository the repository created in Step 1. (&lt;code&gt;git remote add origin https://github.com/{username}/{repository}.git&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Add &lt;code&gt;.gitignore&lt;/code&gt; file to exclude the path &lt;code&gt;public/&lt;/code&gt;, which is the default directory of the generated static files&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git add&lt;/code&gt; .&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git commit -m "initial commit"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git push -u origin master&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5. Publish blog to &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;When we are ready to deploy our blog we do the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Execute &lt;code&gt;hugo -d {path}&lt;/code&gt;, where path is the cloned repository path from step 2&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;cd&lt;/code&gt;into the above path&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git add .&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git commit -m "initial commit"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Execute &lt;code&gt;git push origin master&lt;/code&gt;
After this we can enjoy our newly created blog under &lt;code&gt;http://{username}.github.io&lt;/code&gt; where username should be replaced with your &lt;a href="https://en.wikipedia.org/wiki/Technology" rel="noopener noreferrer"&gt;Github's&lt;/a&gt; username.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.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%2Fz7rrb9nxuskyonxf8ijk.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2Fz7rrb9nxuskyonxf8ijk.jpg" alt="Tech" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/YDsS38QkI6M"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Code Model
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class Tag(models.Model):
    name = models.CharField(max_length=100, unique=True)
    slug = models.SlugField(max_length=50, unique=True, blank=True)
    created_at = models.DateTimeField(auto_now_add=True)
    updated_at = models.DateTimeField(auto_now=True)

    def save(self, *args, **kwargs):
        if not self.slug:
            self.slug = slugify(self.name)  
        super().save(*args, **kwargs)

    def __str__(self):
        return self.name

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

&lt;/div&gt;



</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
