How to use Vector capacity function in C++

By Barshan Paul

In this post, we will learn how to use the vector library and its vector capacity function in C++. Vector library is just like a regular library except for the part where these hou.... Read More

Difference between “size” and “capacity” in C++ in String

By Barshan Paul

In this post, we are going to investigate the difference between the size and capacity of strings in C++. The difference between the size and capacity of a string in C++ is pretty .... Read More

Create my first Node.js HTTP server

By Faruque Ahamed Mollick

I am a web developer and till now I used the JavaScript only for front end client-side development on the web browsers. But JavaScript is not limited only on the client-side. After.... Read More

Find maximum k elements from given elements in C++

By Sakshi Gupta

In this tutorial, we will learn how to find maximum k elements from given elements in C++. This is a really tricky one and below is an interesting solution based on heaps. For exam.... Read More

Convert URLs within text string into clickable links in PHP

By Faruque Ahamed Mollick

If you have text which contains one or more than one URL, then you may need to convert those into hyperlinks on the web page. You may often find in different types of social media .... Read More

LSTM in deep learning

By Sai Ram

Long Short Term Memory(LSTM) is a recurrent neural network(RNN) architecture. It has feedback connections, unlike the other neural networks which have feedforward architecture to p.... Read More

How to convert image into pdf in Python

By Jagannath@cr7

In this tutorial, we will learn how to convert image to pdf file in Python using img2pdf. An image can be of any format with extensions like jpg or png. A pdf is an electronic im.... Read More

Contourf plot in matplotlib using Python

By Sachin Rastogi

In this article, we will learn about the concept of the contourf plot in matplotlib using Python. contourf function uses the current colormaps to fill the spaces between the leve.... Read More

Related Posts