How to play an MP3 File in Swift Storyboard

By Aryan

The basic Xcode firmware contains the AVFoundation module, but the constraint to using it is you will only able to play sound with “.wav” extension and is not able to play MP3 .... Read More

Create Immutable class in Java

By Shiksha Sinha

In this tutorial, we are going to learn how to create immutable classes in Java. Java provides us with a lot of advantageous features to make our tasks easier and more convenient t.... Read More

StringBuilder Class in Java

By Subhojeet Ghosh

In this tutorial, we will learn StringBuilder Class in Java and its application and methods used. String Builder Class in Java is used to create mutable String. As we know in Java .... Read More

How to enable HTTPS in Express.js

By Manoj Srinivas

In this tutorial, we will learn how to enable HTTPS in Express JS. You require an SSL certificate and an SSL key to do it. We create a self-signed SSL certificate and add it to the.... Read More

Convert JSON data into an array in Django

By Khushi Aswani

This tutorial is to convert JSON data into an array in Django and print the same. We will create JSON Data and then we will use the dumps function. To do this task, we need JSON da.... Read More

How to call an external JavaScript function in a Django template

By Anand Jaiswal

In this tutorial, we will learn how to call an external javascript function in a Django template. Steps to perform this task:- Create Project Start an app Create an HTML file Creat.... Read More

How to call a function in Python

By Shubhodh Amaravadi

In this tutorial, we will learn how to call a function in Python. In Python, a function is a reusable code that does some specified task. A function performs a task only when it ge.... Read More

Parameters in Python

By Shubhodh Amaravadi

In this tutorial, we will learn about parameters in Python. To pass information to any function, we use some variables or objects known as parameters. The function processes this i.... Read More

Related Posts