Skip to content
Code_Underscored_logo
  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Code_Underscored_logo
  • Using Faker in Django
    Django

    How to use Faker in Django

    ByHumphrey December 21, 2021March 2, 2024

    Faker is one of the Python libraries that helps you create fake data. This article will utilize Faker in Django to make some early data for our database. We’ll start by configuring Faker with Django and then looking at producing data.

    Read More How to use Faker in DjangoContinue

  • Sessions in Django
    Django

    Sessions in Django

    ByHumphrey December 21, 2021March 2, 2024

    All communication between the servers and the web browsers and vice-versa is done through stateless HTTP. Because the protocol is stateless, client and server communications are entirely independent of one another; there is no sense of “sequence” or “behavior” depending on previous messages. As a result, you’ll have to develop your website if you want to keep track of ongoing client contacts.

    Read More Sessions in DjangoContinue

  • Transactions in Django
    Django

    Transactions in Django

    ByHumphrey December 18, 2021March 2, 2024

    Django is set to operate in auto-commit mode by default. Unless a transaction is active, each query is immediately committed to the database. Therefore, it means that by default:

    Read More Transactions in DjangoContinue

  • Webhooks in Django
    Django

    Webhooks in Django

    ByHumphrey December 7, 2021March 2, 2024

    A webhook refers to an HTTP callback initiated when an event occurs. They help notify different web apps on the internet or any network about an occurrence.

    Read More Webhooks in DjangoContinue

  • JavaScript for loop
    JavaScript

    JavaScript for loop

    ByHumphrey December 6, 2021March 2, 2024

    Loops can run a block of code several times. As a result, loops come in handy if you want to run the same code multiple times, each time with a different value. In addition, the iteration usually runs a fixed number of times.

    Read More JavaScript for loopContinue

  • Map in JavaScript
    JavaScript

    Map in JavaScript

    ByHumphrey December 2, 2021March 2, 2024

    You may occasionally need to take an array and process its elements, resulting in a new array with updated elements. Instead of manually iterating over the array with a loop, you can use the built-in Array.map() method.

    Read More Map in JavaScriptContinue

  • System Tests in Django
    Django

    System Tests in Django

    ByHumphrey December 2, 2021March 2, 2024

    It is incredibly beneficial to integrate the habit of writing and developing tests into your software development process. A large part of software engineering is writing and developing tests and test suites to guarantee that the product is stable.

    Read More System Tests in DjangoContinue

  • Integrating Stripe in Django
    Django

    How to integrate Stripe in Django

    ByHumphrey November 30, 2021March 2, 2024

    It’s straightforward to integrate the Stripe payment gateway into your Django project. In addition, Stripe makes it easy to accept payments from your Django website, and it simply takes a few minutes.

    Read More How to integrate Stripe in DjangoContinue

  • PayPal Integration Django Client-Side
    Django

    PayPal Integration Django: Client-Side

    ByHumphrey November 30, 2021March 2, 2024

    Paypal is a well-known online payment service. Even if there are other viable competitors today, Paypal is a significant participant in the market with a good reputation and millions of consumers’ trust.

    Read More PayPal Integration Django: Client-SideContinue

  • Serialization in Django
    Django

    Serialization in Django

    ByHumphrey November 30, 2021March 2, 2024

    A serialization class will convert a model into JSON data which is so essential to saving data in an easily transferable format, for instance, saving data in a flash drive. In addition, serializers in the Django REST Framework are in charge of transforming objects into data types that JavaScript and front-end frameworks can understand.

    Read More Serialization in DjangoContinue

  • Signals in Django
    Django

    Signals in Django

    ByHumphrey November 28, 2021March 2, 2024

    Signals are used to do any action in response to a model instance being modified. Signals are tools that assist us in connecting occurrences to actions. We can create a function that will execute when a signal is received. In other words, Signals are used to respond to the alteration or creation of a specific database entry.

    Read More Signals in DjangoContinue

  • Regular Expressions in Python
    Python

    Regular Expressions in Python

    ByHumphrey November 26, 2021March 2, 2024

    A RegEx is what is mainly referred to as a Regular Expression. It is a search pattern made up of a series of characters. As a result, to see if a string contains the supplied search pattern, use RegEx.

    Read More Regular Expressions in PythonContinue

Page navigation

Previous PagePrevious 1 … 15 16 17 18 19 … 32 Next PageNext
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy

© 2025 Code Underscored. All Rights Reserved.

A PART OF VIBRANT LEAF MEDIA COMPANY.

  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Search