Skip to content
Code_Underscored_logo
  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Code_Underscored_logo
  • Integration tests in Django
    Django

    Integration tests in Django

    ByHumphrey November 26, 2021March 2, 2024

    Unlike unit testing, where we test individual components, Integration testing is a more extensive test that targets entire applications. It combines different sections of code functionality to make sure that they behave correctly. So, we use unit testing to test individual components; then, we use integration testing to test the integration of these components.

    Read More Integration tests in DjangoContinue

  • JavaScript sub-string
    JavaScript

    JavaScript “sub-string”

    ByHumphrey November 14, 2021March 2, 2024

    Strings are frequently used in everyday programming. Fortunately, JavaScript has many built-in methods that assist us when working with arrays, strings, and other data types. These methods can be used for various tasks such as searching, replacing, concatenating strings, etc.

    Read More JavaScript “sub-string”Continue

  • Unit tests in Django
    Django

    Unit tests in Django

    ByHumphrey November 2, 2021March 2, 2024

    Manual testing of websites becomes more difficult as they expand in size. Not only is there more to test, but as component relationships become more complicated, a slight change in one area might influence other areas. The latter will necessitate more testing to guarantee everything continues to operate and no mistakes are created as more changes are made.

    Read More Unit tests in DjangoContinue

  • Using Lambda in Python
    Python

    How to use Lambda in Python

    ByHumphrey November 2, 2021March 2, 2024

    I was terrified by lambda functions when I first saw them in Python and assumed they were only for senior Pythonistas. In fact, beginner python tutorials praise the language’s intelligible syntax, but lambdas didn’t appear to be particularly user-friendly.

    Read More How to use Lambda in PythonContinue

  • Illegal start of expression in Java
    Java

    Illegal start of expression in Java

    ByMoses N November 1, 2021March 2, 2024

    The illegal start of an expression is a java error during the compile-time with the “javac” compiler. When the compiler detects that a statement does not follow the syntax rules of the java programming language, an illegal start of expression error message is displayed. These errors can occur due to so many reasons. In most cases, they are straightforward to solve as long as you can locate the line of code with the error. It can be as simple as caused by an omitting closing or opening bracket or a missing semicolon at the end of a line.

    Read More Illegal start of expression in JavaContinue

  • Socket Programming in Python
    Python

    Socket Programming in Python

    ByHumphrey November 1, 2021March 2, 2024

    Socket programming is a method of allowing two network nodes to communicate with one another. One socket (node) listens on a specific port at an IP address, while the other socket establishes a connection. While the client connects to the server, the server creates the listener socket.

    Read More Socket Programming in PythonContinue

  • Django authentication with LinkedIn
    Django

    Django authentication with LinkedIn

    ByHumphrey October 30, 2021March 2, 2024

    Social Authentication (or Social Login) is a method of simplifying end-user logins by utilizing current login information from prominent social networking services like Facebook, Twitter, Google, and LinkedIn, which is the subject of this article. Most websites require users to log in using social login platforms for a better authentication/registration experience instead of establishing their systems.

    Read More Django authentication with LinkedInContinue

  • Django authentication with Twitter
    Django

    Django authentication with Twitter

    ByHumphrey October 30, 2021March 2, 2024

    Because OAuth 2 has emerged as the industry standard for social applications and third-party authentication, as a result, you may concentrate on learning and implementing it to support a wide range of social authentication providers. The standard OAuth 2 providers include Facebook, Google, GitHub and, Twitter.

    Read More Django authentication with TwitterContinue

  • create a password generator using Python
    Python

    How to create a password generator using Python

    ByRoshan Agarwal October 30, 2021March 2, 2024

    In today’s digital world, security is one of the most important things. Since everything is going digital, we need to be highly concerned about security. To protect our accounts and data from anonymous people, we all use passwords daily. Password keeps our account safe by restricting other users from accessing the account. Although passwords are the most common types of security used in the digital world, they are not safe if we misuse them.

    Read More How to create a password generator using PythonContinue

  • Django authentication with GitHub
    Django

    Django authentication with GitHub

    ByHumphrey October 27, 2021March 2, 2024

    The process of manually signing up and signing into your account for web applications can be very strenuous. As a result, social-media authentication has come in handy to ease the entire process by using login information from one of your favorite social networks.

    Read More Django authentication with GitHubContinue

  • Django Authentication with Facebook
    Django

    Django Authentication with Facebook

    ByHumphrey October 24, 2021March 2, 2024

    It can take a long time to create and log in to website accounts on the internet manually. In modern web apps, social authentication solves this difficulty by allowing users to sign in and sign up with an application using login information from a social network provider with which they already have an account.

    Read More Django Authentication with FacebookContinue

  • Django Authentication with Google
    Django

    Django Authentication with Google

    ByHumphrey October 24, 2021March 2, 2024

    Manually creating and logging into accounts on the internet can be time-consuming. Social authentication, a mechanism for users to sign in (and sign up) with an application using login information from a social network provider with which they already have an account, solves this problem in modern web applications.

    Read More Django Authentication with GoogleContinue

Page navigation

Previous PagePrevious 1 … 16 17 18 19 20 … 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