Show a PDF file in Django instead of downloading

By Khushi Aswani

In this tutorial, we will be learning how to show a PDF file in Django instead of downloading. It is very simple if you know even a bit about Django. So lets start- Start an app na.... Read More

Slice Multidimensional array in Python

By Khushi Aswani

We all know the concept of arrays – the easiest way to deal with a large amount of the same data type. Arrays are much easier to handle and provide us with a lot of functions.... Read More

How to add Dictionary to Dictionary in Python?

By Nikhil Vaddipati

Hello folks, today we are going to how to add a dictionary to a dictionary in Python. Adding Dictionary to a Dictionary Consider two dictionaries d1 and d2 d1 = {‘name’.... Read More

Fold Expressions in C++

By Joyeeta Choubey

Hi folks! In this tutorial, we are going to learn and implement Fold Expressions in C++. So let us understand first what are fold expressions. Fold Expressions This is a new featur.... Read More

What is a smart pointer and when should I use one in C++

By Aastha Jain

Hey learners, In this tutorial we will learn everything about smart pointers in C++ so stay tuned. Do we all know what is a pointer?? Pointers are just like variables that are used.... Read More

Reset Migrations in Django

By Khushi Aswani

Sometimes, you may need to reset migrations in Django. It is not a very big task but it is important when you are stuck somewhere and your database is not appropriate, you might ne.... Read More

Bar Chart in Pygal

By Varsha Neelamma

Visualization of data using graphs and charts not only provides better understanding but also helps in representing complex data in simple ways. You can visualize the data in diffe.... Read More

Change the format of date in JavaScript (All possible formats)

By Manoj Srinivas

In this tutorial, we will learn how to change the format of date in JavaScript (All possible formats). As a developer, you should display the current date in any format required by.... Read More

Related Posts